query-07cdcda7486d0fc381c08b80c45c5803
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
- https://query.wikidata.org/sparql
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)