query-52dc2c8b0a97968f7562842c088834c9
organization items with pointers to documentation files, ordered by the number of institutions that have material on the given organization. SELECT DISTINCT ?org ?orgLabel (count () as ?count) { ?org wdt:P10527 ?institution. ?org wdt:P31/wdt:P279 wd:Q43229. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } group by ?org ?orgLabel order by desc(?count)
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#>
#organization items with pointers to documentation files, ordered by the number of institutions that have material on the given organization.
SELECT DISTINCT ?org ?orgLabel (count (*) as ?count) {
?org wdt:P10527 ?institution.
?org wdt:P31/wdt:P279* wd:Q43229.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} group by ?org ?orgLabel order by desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?institution")
v2("?org"):::projected
a1((" "))
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q43229"]):::iri
v2 --"wdt:P10527"--> v3
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(*)"/]
bind1 --as--o v4