query-5d85167090f222c15e08dbe01c1a7e05
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q30 .
?article schema:about ?item ;
schema:isPartOf <https://he.wikipedia.org/> .
?item 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;
v3("?article")
v1("?dod")
v2("?item"):::projected
c6([https://he.wikipedia.org/]):::iri
c9(["bd:serviceParam"]):::iri
c3(["wd:Q30"]):::iri
c11(["en"]):::literal
f0[["year-from-dateTime(?dod) = '1970^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P27"--> c3
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c6
v2 --"wdt:P570"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end