query-d23ff39be883d9e2cf351262b0cc5a5d
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item WHERE{
?item wdt:P27 wd:Q801;
wdt:P569 ?birth .
FILTER(YEAR(?birth) < 1948)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?birth")
v2("?item"):::projected
c3(["wd:Q801"]):::iri
f0[["year-from-dateTime(?birth) < '1948^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P27"--> c3
v2 --"wdt:P569"--> v1