query-551a6db761abc860c3139c68a118a451
As bubble diagram of professions
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#>
#defaultView:BubbleChart
SELECT ?occupation ?occupationLabel (COUNT(*) as ?count) WHERE {
?person wdt:P509 wd:Q84263196 ; wdt:P31 wd:Q5 .
?person wdt:P106 ?occupation .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } .
}
GROUP BY ?occupation ?occupationLabel
ORDER BY DESC(?count)
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?occupation"):::projected
v2("?person")
c2(["wd:Q84263196"]):::iri
c7(["bd:serviceParam"]):::iri
c4(["wd:Q5"]):::iri
c9(["en"]):::literal
v2 --"wdt:P509"--> c2
v2 --"wdt:P31"--> c4
v2 --"wdt:P106"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(*)"/]
bind1 --as--o v4