query-e21d1353521d25feb34e9d193ec20984
Date de décès dans l'avenir tinyurl.com/hsev4nm
Use at
- https://query.wikidata.org/sparql
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 ?DateOfDeath WHERE {
?Person wdt:P31 wd:Q5.
?Person wdt:P570 ?DateOfDeath.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
FILTER(?DateOfDeath > (NOW()))
}
ORDER BY ?DateOfDeath
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?DateOfDeath"):::projected
v2("?Person"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c7(["en"]):::literal
f0[["?DateOfDeath > NOW()"]]
f0 --> v1
v2 --"wdt:P31"--> c2
v2 --"wdt:P570"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end