query-588598ad32881ac5f2c229300a41a202
TODO
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 ?item ?itemLabel (YEAR(?dod) as ?year_of_death)
WHERE
{
?item wdt:P27 wd:Q801;
wdt:P570 ?dod.
FILTER(YEAR(?dod) = 1970)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dod"):::projected
v2("?item"):::projected
v3("?year_of_death")
c6(["bd:serviceParam"]):::iri
c3(["wd:Q801"]):::iri
c8(["en"]):::literal
f0[["year-from-dateTime(?dod) = '1970^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P27"--> c3
v2 --"wdt:P570"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"year-from-dateTime(?dod)"/]
v1 --o bind1
bind1 --as--o v3