query-53c4cc231179ae997ddb8ff51fe2a826
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item wdt:P585 ?time.
FILTER ((?time > "1452-01-01"^^xsd:dat) && (?time < "1452-12-31"^^xsd:dat)).
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" . }
}
Query found at
- https://www.wikidata.org/wiki/Translations:Help:Dates/154/en
- https://www.wikidata.org/wiki/Translations:Help:Dates/154/fr
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?time")
c5(["bd:serviceParam"]):::iri
c7(["fr"]):::literal
f0[["?time > s1452-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'?time < s1452-12-31^^<http://www.w3.org/2001/XMLSchema#dat>'"]]
f0 --> v1
v2 --"wdt:P585"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end