query-65fb6a271e0bb725d291743824343526

rq turtle/ttl

My work on Dutch & Flemish paintersPainters listed in Houbraken's dictionary of painters (bubble chart of names):

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?painter ?painterLabel (COUNT(DISTINCT ?painting) AS ?count) WHERE {
  ?painting wdt:P31 wd:Q3305213 .
  ?painting wdt:P170 ?painter .
  ?painter wdt:P1343 wd:Q7737966.
   SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }      
} GROUP BY ?painter ?painterLabel HAVING (?count > 4 )

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?painter"):::projected v2("?painting"):::projected c3(["wd:Q3305213"]):::iri c8(["bd:serviceParam"]):::iri c6(["wd:Q7737966"]):::iri c10(["en"]):::literal f0[["?count > '4^^xsd:integer'"]] f0 --> v4 v2 --"wdt:P31"--> c3 v2 --"wdt:P170"--> v3 v3 --"wdt:P1343"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind2[/"count(?painting)"/] v2 --o bind2 bind2 --as--o v4