query-89fff7518264957297adc95c50997e0a
Personas muertas
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?entity (year(?date) as ?year) WHERE {
?entity wdt:P570 ?date .
FILTER (datatype(?date) = xsd:dateTime)
FILTER (year(?date) = year(now()))
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date"):::projected
v2("?entity"):::projected
v3("?year")
f0[["year-from-dateTime(?date) = year-from-dateTime(NOW())"]]
f0 --> v1
f1[["?date = 'xsd:dateTime'"]]
f1 --> v1
v2 --"wdt:P570"--> v1
bind2[/"year-from-dateTime(?date)"/]
v1 --o bind2
bind2 --as--o v3