query-198a5bf63c60266300ec072b55d32572
Awards1. Return a list of all educational institutions attended by winners of Guggenheim Fellowships ranked in order of the number of recipients.
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#>
SELECT ?school ?schoolLabel (COUNT(?person) AS ?count)
WHERE {
?person wdt:P166 wd:Q1316544 .
?person wdt:P69 ?school .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
GROUP BY ?school ?schoolLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v2("?person"):::projected
v3("?school"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wd:Q1316544"]):::iri
v2 --"wdt:P166"--> c2
v2 --"wdt:P69"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?person)"/]
v2 --o bind1
bind1 --as--o v4