query-a8d36366e9701949a3d0c41b26f34265
WikiJunkie
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 ?q WHERE {
?q wdt:P31/wdt:P279* wd:Q7889 .
MINUS { ?page schema:about ?q ; schema:isPartOf <https://he.wikipedia.org/> }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?page")
v1("?q"):::projected
a1((" "))
c6([https://he.wikipedia.org/]):::iri
c3(["wd:Q7889"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c6
end