query-010389c0445e7270318d0115218ada15

rq turtle/ttl

Australian women artist with institution count

SELECT ?artist ?artistLabel (COUNT(?institution) as ?count) 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 ?institution. # has works in ?institution ?institution wdt:P131* wd:Q408. # institution in Australia

SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } GROUP BY ?artist 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 {

   {?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 ?institution.    # has works in ?institution
   ?institution wdt:P131* wd:Q408.    # institution in Australia

  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?artist
ORDER BY DESC (?count)

Query found at