query-ee287ef3883781481998f9986381fd1c
Bubble chart of 3d graphics software titles ranked by 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 DISTINCT ?software ?softwareLabel (count (?ff) as ?count)
WHERE {
?software wdt:P31/wdt:P279* wd:Q7397.
?software wdt:P366 wd:Q189177 .
?software wdt:P1072 ?ff.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
GROUP BY ?software ?softwareLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?ff"):::projected
v2("?software"):::projected
a1((" "))
c3(["wd:Q7397"]):::iri
c8(["bd:serviceParam"]):::iri
c5(["wd:Q189177"]):::iri
c10(["en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P366"--> c5
v2 --"wdt:P1072"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"count(?ff)"/]
v3 --o bind1
bind1 --as--o v4