query-fef6ad7e214b1baefcf50517e64c1a0a

rq turtle/ttl

TODO

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 ?dateOfBirth
WHERE 
{
  ?item wdt:P106 wd:Q82955.      # occupation = politician
  ?item wdt:P27 wd:Q142.         # country of citizenship = France
  ?item wdt:P569 ?dateOfBirth.   # date of birth greater than or equal to 1900
  FILTER("1900-00-00"^^xsd:date <= ?dateOfBirth)
  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("?dateOfBirth"):::projected v2("?item"):::projected c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q82955"]):::iri c5(["wd:Q142"]):::iri f0[["'1900-00-00^^xsd:date' <= ?dateOfBirth"]] f0 --> v1 v2 --"wdt:P106"--> c3 v2 --"wdt:P27"--> c5 v2 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end