query-2714080894d761e9a258ddecd73b85e9
Count of CBDB people by nationality
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?country ?countryLabel (COUNT(?wd) AS ?count) WHERE {
?wd wdt:P497 ?cbdb;
wdt:P27 ?country
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?country ?countryLabel ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?cbdb")
v5("?count")
v4("?country"):::projected
v2("?wd"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P497"--> v3
v2 --"wdt:P27"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"count(?wd)"/]
v2 --o bind1
bind1 --as--o v5