query-0c71d198b3354234ef0df7ff02a6b014
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item WHERE {
?item wdt:P569 ?dob; wdt:P21 wd:Q6581072; wdt:P31 wd:Q5 .
MINUS { ?item ^schema:about/schema:isPartOf <https://de.wikipedia.org/> }
FILTER(YEAR(?dob) < 0) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dob")
v2("?item"):::projected
a1((" "))
c9([https://de.wikipedia.org/]):::iri
c6(["wd:Q5"]):::iri
c4(["wd:Q6581072"]):::iri
f0[["year-from-dateTime(?dob) < '0^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P569"--> v1
v2 --"wdt:P21"--> c4
v2 --"wdt:P31"--> c6
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> c9
end