query-d2630dd94ab6b21d8f81a5e2dadc48f6

rq turtle/ttl

Developers of Formats with a pronom id by count of formats

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT  ?dev ?devLabel (COUNT(?item) AS ?count) WHERE {
  ?item wdt:P2748 ?pro.
  ?item wdt:P178 ?dev.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?dev ?devLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v4("?dev"):::projected v2("?item"):::projected v3("?pro") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P2748"--> v3 v2 --"wdt:P178"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v5