query-284cd7c84e5a1979173ed69d56adac8f
Audio software titles by the count of readable file formats
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 ?app ?appLabel (count (?ff) as ?count)
WHERE {
?app wdt:P31/wdt:P279* wd:Q15562063.
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
c3(["wd:Q15562063"]):::iri
c8(["en"]):::literal
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