query-6a8fa30361d0b6e03aa2be7173e18890

rq turtle/ttl

Bubble chart of CAD software by count of readable file formats

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 ?app ?appLabel (count (?ff) as ?count)

WHERE {
  ?app wdt:P31/wdt:P279* wd:Q15548076.
  OPTIONAL {?app wdt:P1072 ?ff.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

GROUP BY ?app ?appLabel


ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?app"):::projected v4("?count") v3("?ff"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c3(["wd:Q15548076"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1072".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?ff)"/] v3 --o bind1 bind1 --as--o v4