query-9eefc7f81ee58cc4e6708257846e0c60

rq turtle/ttl

PropertiesGRID ID (P2427)developer (P178)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel (COUNT(?software) AS ?count)
WHERE 
{
  ?item wdt:P2427 ?value .
  ?software wdt:P178 ?item.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

GROUP BY ?item ?itemLabel

ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v2("?item"):::projected v4("?software"):::projected v3("?value") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P2427"--> v3 v4 --"wdt:P178"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"count(?software)"/] v4 --o bind1 bind1 --as--o v5