query-6423065d596f1abe74a7046354f6b2fb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item WHERE{
?item wdt:P1648 []
MINUS{
?article 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("?article")
v1("?item"):::projected
a1((" "))
c4([https://en.wikipedia.org/]):::iri
v1 --"wdt:P1648"--> a1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c4
end