query-fb95a203db6e920520f870a3dfd5d9de
Bubble chart of schools attended by artists on this WikiProject's focus list
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#>
#title: Schools attended by Boston public artists
#defaultView:BubbleChart
select ?school ?schoolLabel (count(distinct ?artist) as ?numberOfArtists) where {
?artist wdt:P5008 wd:Q108040915;
wdt:P31 wd:Q5;
wdt:P69 ?school.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} group by ?school ?schoolLabel
order by desc(?numberOfArtists)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?artist"):::projected
v4("?numberOfArtists")
v3("?school"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q108040915"]):::iri
c4(["wd:Q5"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P5008"--> c2
v2 --"wdt:P31"--> c4
v2 --"wdt:P69"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?artist)"/]
v2 --o bind1
bind1 --as--o v4