query-9ffc2f4d021595f3ef4c56a11a935768
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT DISTINCT ?item WHERE {
?item wdt:P31/wdt:P279* wd:Q4830453;
wdt:P625 [];
wdt:P159 [] .
MINUS { ?item p:P159/pq:P625 [] } . # actually, this is superfluous, those coords shouldn't be there anyway
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a2((" "))
a3((" "))
a5((" "))
a1((" "))
a4((" "))
c3(["wd:Q4830453"]):::iri
v1 --"p:direct/P31"--> a1
a1 --"p:direct/P279"--> c3
v1 --"p:direct/P625"--> a2
v1 --"p:direct/P159"--> a3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"p:P159"--> a4
a4 --"p:qualifier/P625"--> a5
end