query-93f3538b6207b1852d394455b6500362
title:Screen Nation awards and their number of winners known to Wikidata SELECT ?award ?awardLabel ?categoryLabel ?topcatLabel (COUNT(?winner) AS ?winners) WHERE { ?topcat wdt:P279 wd:Q7439004. ?category wdt:P279 ?topcat. ?award wdt:P31 ?category. OPTIONAL {?winner wdt:P166 ?award} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?award ?awardLabel ?categoryLabel ?topcatLabel ORDER BY ?categoryLabel ?awardLabel
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#>
#title:Screen Nation awards and their number of winners known to Wikidata
SELECT ?award ?awardLabel ?categoryLabel ?topcatLabel (COUNT(?winner) AS ?winners) WHERE {
?topcat wdt:P279 wd:Q7439004.
?category wdt:P279 ?topcat.
?award wdt:P31 ?category.
OPTIONAL {?winner wdt:P166 ?award}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?award ?awardLabel ?categoryLabel ?topcatLabel
ORDER BY ?categoryLabel ?awardLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?award"):::projected
v2("?awardLabel"):::projected
v4("?category")
v1("?categoryLabel"):::projected
v3("?topcat")
v6("?winner"):::projected
v7("?winners")
c6(["bd:serviceParam"]):::iri
c2(["wd:Q7439004"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v3 --"wdt:P279"--> c2
v4 --"wdt:P279"--> v3
v5 --"wdt:P31"--> v4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P166".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?winner)"/]
v6 --o bind1
bind1 --as--o v7