query-98153bf8af0f0846c0673e0774101eac
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(?item) AS ?count) {
?item wdt:P31 wd:Q5.
?item wdt:P1284 [] .
MINUS {?item wdt:P227 [] .}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item"):::projected
a1((" "))
a2((" "))
c2(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P1284"--> a1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P227"--> a2
end
bind2[/"count(?item)"/]
v1 --o bind2
bind2 --as--o v2