query-596ed533f16ed13b8c491bce7eddcf0f
Return a bubble chart of standard UNIX utilities ranked in the order of the number of environment variables they can read
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#defaultView:BubbleChart
SELECT ?itemLabel (COUNT(?item) as ?count)
WHERE
{
?item wdt:P31 wd:Q18343316.
?item wdt:P4810 ?var.
?item rdfs:label ?itemLabel .
FILTER (lang(?itemLabel)="en")
} GROUP BY ?itemLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count")
v3("?item"):::projected
v2("?itemLabel"):::projected
v4("?var")
c3(["wd:Q18343316"]):::iri
f0[["?itemLabel = 'en'"]]
f0 --> v2
v3 --"wdt:P31"--> c3
v3 --"wdt:P4810"--> v4
v3 --"rdfs:label"--> v2
bind2[/"count(?item)"/]
v3 --o bind2
bind2 --as--o v5