query-734ece35984c17de3b00093931cb6dde
awards of India SELECT ?award ?awardLabel ?awardDescription ?recepients { { SELECT ?award (COUNT(?person) as ?recepients) { ?person wdt:P166 ?award. ?award wdt:P17 wd:Q668. # of India } GROUP BY ?award ORDER BY DESC(?recepients) LIMIT 123 } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY DESC(?recepients)
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#>
# awards of India
SELECT ?award ?awardLabel ?awardDescription ?recepients
{
{
SELECT ?award (COUNT(?person) as ?recepients)
{
?person wdt:P166 ?award.
?award wdt:P17 wd:Q668. # of India
}
GROUP BY ?award
ORDER BY DESC(?recepients)
LIMIT 123
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
ORDER BY DESC(?recepients)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?award"):::projected
v2("?person")
v4("?recepients"):::projected
c5(["bd:serviceParam"]):::iri
c3(["wd:Q668"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P166"--> v3
v3 --"wdt:P17"--> c3
bind1[/"count(?person)"/]
v2 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end