query-2953349c62457fa8683720d45680013c
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 ?human ?humanLabel ?born
WHERE
{
?human wdt:P31 wd:Q5.
?human wdt:P39 wd:Q4416090.
?human wdt:P569 ?born.
filter not exists { ?human wdt:P570 [] }
filter not exists { ?human wdt:P2002 [] }
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;
v2("?born"):::projected
v1("?human"):::projected
a2((" "))
a1((" "))
c9(["bd:serviceParam"]):::iri
c6(["wd:Q4416090"]):::iri
c4(["wd:Q5"]):::iri
c11(["en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P2002"--> e0a1
e0v1("?human"):::projected
e0a1((" ")):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> a1
v1 --"wdt:P2002"--> a1
f1[["not "]]
subgraph f1e1["Exists Clause"]
e1v1 --"wdt:P570"--> e1a1
e1v1("?human"):::projected
e1a1((" ")):::projected
end
f1--EXISTS--> f1e1
f1 --> v1
f1 --> c2
f1 --> a2
v1 --"wdt:P570"--> a2
v1 --"wdt:P31"--> c4
v1 --"wdt:P39"--> c6
v1 --"wdt:P569"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end