query-444b4b95e8a8696eb96b0131ea95ecd1
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 ?dob WHERE {
?item wdt:P31 wd:Q5; wdt:P569 ?dob .
FILTER( !ISBLANK( ?dob ) ) .
FILTER( YEAR( ?dob ) >= 1900 && YEAR( ?dob ) < 1950 ) .
FILTER( DAY( ?dob ) = 10 ) .
MINUS { ?item ^schema:about/schema:isPartOf <https://he.wikipedia.org/> } .
} LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dob"):::projected
v2("?item"):::projected
a1((" "))
c9([https://he.wikipedia.org/]):::iri
c5(["wd:Q5"]):::iri
f0[["day-from-dateTime(?dob) = '10^^xsd:integer'"]]
f0 --> v1
f1[["year-from-dateTime(?dob) >= '1900^^xsd:integer'year-from-dateTime(?dob) < '1950^^xsd:integer'"]]
f1 --> v1
f2[["not isBlank(?dob)"]]
f2 --> v1
v2 --"wdt:P31"--> c5
v2 --"wdt:P569"--> v1
subgraph minus3["MINUS"]
style minus3 stroke-width:6px,fill:pink,stroke:red;
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> c9
end