query-fc50801c577535c8d442bf74473eb7be

rq turtle/ttl

Where are the paintings?First of all, you can count how many we have today:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(DISTINCT ?item) AS ?count) WHERE {
  ?item wdt:P31 wd:Q3305213 .
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?count") v1("?item"):::projected c2(["wd:Q3305213"]):::iri v1 --"wdt:P31"--> c2 bind1[/"count(?item)"/] v1 --o bind1 bind1 --as--o v2