query-462919c71fa62bbe4953e6097d01f1ea
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 wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?date
WHERE
{
?item wdt:P31 wd:Q13418847.
?item wdt:P17 wd:Q142.
?item wdt:P585 ?date.
filter (?date > "1900-01-01"^^xsd:date && ?date < "2000-01-01"^^xsd:dat)
SERVICE wikibase:label { bd:serviceParam wikibase:language"[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date"):::projected
v2("?item"):::projected
c4(["wd:Q13418847"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q142"]):::iri
f0[["?date > '1900-01-01^^xsd:date'?date < s2000-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]]
f0 --> v1
v2 --"wdt:P31"--> c4
v2 --"wdt:P17"--> c6
v2 --"wdt:P585"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end