query-fe8d5122a6d1d3ed3a4dafb4d4853db1

rq turtle/ttl

Bubble chart of employers ranked by the number of their employees w archival material at CHM

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#>
#defaultView:BubbleChart
SELECT  ?employer  ?employerLabel (COUNT(?person) AS ?count)

WHERE {
  ?person wdt:P485 wd:Q964035 .
  ?person wdt:P108 ?employer .


SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }


  }

GROUP BY  ?employer  ?employerLabel

ORDER BY DESC (?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?employer"):::projected v2("?person"):::projected c2(["wd:Q964035"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P485"--> c2 v2 --"wdt:P108"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?person)"/] v2 --o bind1 bind1 --as--o v4