query-91741572a7008867d4d97750cb9f6c65

rq turtle/ttl

Date de naissance dans l'avenir tinyurl.com/jb8yjls

Use at

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 ?Person ?PersonLabel ?DateOfBirth WHERE {
  ?Person wdt:P31 wd:Q5.
  ?Person wdt:P569 ?DateOfBirth.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  FILTER(?DateOfBirth > (NOW()))
}
ORDER BY ?DateOfBirth

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?DateOfBirth"):::projected v2("?Person"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c7(["en"]):::literal f0[["?DateOfBirth > NOW()"]] f0 --> v1 v2 --"wdt:P31"--> c2 v2 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end