query-07cdcda7486d0fc381c08b80c45c5803

rq turtle/ttl

Australian women artist with institution count

SELECT ?artist ?artistLabel (COUNT(?institution) as ?count) with { select distinct ?artist WHERE { {?artist wdt:P106 wd:Q483501.} # any form of artist UNION {?artist wdt:P106 wd:Q11569986 .} # occupation printmaker UNION {?artist wdt:P106 wd:Q1028181.} # occupation painter UNION {?artist wdt:P106 wd:Q1281618.} # occupation sculptor ?artist wdt:P31 wd:Q5. # is human ?artist wdt:P21 wd:Q6581072. # is female ?artist wdt:P6379/wdt:P131 wd:Q408. # has work in institution in Australia hint:Prior hint:gearing "forward". } } as %i where { include %i ?artist wdt:P6379 ?institution. # has works in ?institution ?institution wdt:P131 wd:Q408. # institution in Australia SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } GROUP BY ?artist ?artistLabel ORDER BY DESC (?count)

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#>
# Australian women artist with institution count

SELECT ?artist ?artistLabel (COUNT(?institution) as ?count) where
{
   { select distinct ?artist WHERE 
{
   {?artist wdt:P106 wd:Q483501.}     # any form of artist
  UNION
   {?artist wdt:P106 wd:Q11569986 .}  # occupation printmaker
  UNION 
   {?artist wdt:P106 wd:Q1028181.}    # occupation painter
  UNION 
   {?artist wdt:P106 wd:Q1281618.}    # occupation sculptor
   ?artist wdt:P31 wd:Q5.             # is human
   ?artist wdt:P21 wd:Q6581072.       # is female
   ?artist wdt:P6379/wdt:P131* wd:Q408.    # has work in institution in Australia

} }  ?artist wdt:P6379 ?institution.    # has works in ?institution
  ?institution wdt:P131* wd:Q408.    # institution in Australia
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?artist ?artistLabel
ORDER BY DESC (?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?artist"):::projected v4("?count") v3("?institution"):::projected a1((" ")) c3(["wd:Q11569986"]):::iri c2(["wd:Q483501"]):::iri c16(["en"]):::literal c12(["wd:Q408"]):::iri c9(["wd:Q6581072"]):::iri c4(["wd:Q1028181"]):::iri c14(["bd:serviceParam"]):::iri c7(["wd:Q5"]):::iri c5(["wd:Q1281618"]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; subgraph union2[" Union "] subgraph union2l[" "] style union2l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c5 end subgraph union2r[" "] style union2r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c4 end union2r <== or ==> union2l end end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c3 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c2 end union0r <== or ==> union0l end v2 --"wdt:P31"--> c7 v2 --"wdt:P21"--> c9 v2 --"wdt:P6379"--> a1 a1 --"wdt:P131"--> c12 v2 --"wdt:P6379"--> v3 v3 --"wdt:P131"--> c12 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end bind1[/"count(?institution)"/] v3 --o bind1 bind1 --as--o v4