query-e1dcd2bf8fe7dde5edfb8a3d2dc411d5

rq turtle/ttl

Pmt

Use at

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 ?dob
WHERE 
{
  ?item wdt:P27 wd:Q20.
  ?item wdt:P569 ?dob .

  FILTER("1820-00-00"^^xsd:date <= ?dob && ?dob <= "1920-00-00"^^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("?dob"):::projected v2("?item"):::projected c7(["bd:serviceParam"]):::iri c4(["wd:Q20"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["'1820-00-00^^xsd:date' <= ?dob?dob <= s1920-00-00^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 v2 --"wdt:P27"--> c4 v2 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end