query-3cbf0c8265edaf9d11b6352475a7038e
Bubble chart of software titles ranked by the number of dependencies listed for them in Wikidata
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 ?application ?applicationLabel (COUNT(?software) AS ?count)
WHERE
{
?application wdt:P31/wdt:P279* wd:Q7397.
?application wdt:P1547 ?software.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?application ?applicationLabel
ORDER BY DESC (?count)
LIMIT 60
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?application"):::projected
v4("?count")
v3("?software"):::projected
a1((" "))
c3(["wd:Q7397"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P1547"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?software)"/]
v3 --o bind1
bind1 --as--o v4