query-0234bf7799131537b60dcc02f9a85841
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
{
{ select ?item where
{
?item wdt:P106/wdt:P279* wd:Q182436 .
}
} ?item wdt:P31 wd:Q5 .
?item wdt:P21 wd:Q6581072 .
FILTER NOT EXISTS { ?wen schema:about ?item; schema:isPartOf <https://en.wikipedia.org/> . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?wen")
a1((" "))
c3([https://en.wikipedia.org/]):::iri
c8(["wd:Q5"]):::iri
c6(["wd:Q182436"]):::iri
c10(["wd:Q6581072"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"schema:about"--> e0v2
e0v1 --"schema:isPartOf"--> e0c3
e0v2("?item"):::projected
e0v1("?wen"):::projected
e0c3([https://en.wikipedia.org/]):::iri
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
f0 --> c2
f0 --> c3
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v2 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c6
v2 --"wdt:P31"--> c8
v2 --"wdt:P21"--> c10