query-9059ed2602938ba5e0c1adf30231728b
Number of artworks query
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) WHERE {
?item wdt:P170 wd:Q381238 .
MINUS{ ?item wdt:P31 wd:Q3658341 .}
?item wdt:P18 [] .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item"):::projected
a1((" "))
c4(["wd:Q3658341"]):::iri
c2(["wd:Q381238"]):::iri
v1 --"wdt:P170"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> c4
end
v1 --"wdt:P18"--> a1
bind2[/"count(?item)"/]
v1 --o bind2
bind2 --as--o v2