query-64f1f01070c24b1c89e3e8ddf9e258fb

rq turtle/ttl

Some queries: Hannolans@ statements they should have: (P6379)has works in the collection The creators and the number of

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?creator (COUNT(DISTINCT(?collection)) AS ?count) WHERE {
  ?painting wdt:P31 wd:Q3305213 . 
  ?painting wdt:P195 ?collection .
  ?painting wdt:P170 ?creator .
  } GROUP BY ?creator
ORDER BY DESC(?count)
LIMIT 500

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?collection"):::projected v5("?count") v4("?creator"):::projected v2("?painting") c2(["wd:Q3305213"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P195"--> v3 v2 --"wdt:P170"--> v4 bind1[/"count(?collection)"/] v3 --o bind1 bind1 --as--o v5