query-276980fc5b4b5b4a251fb4d652c8fa40
Quelle est la nationalité des économistes ?
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 ?countryLabel (COUNT (?item) as ?count) WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
?item wdt:P106 wd:Q188094.
?item wdt:P27 ?country
}
GROUP BY ?countryLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?country")
v2("?item"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q188094"]):::iri
c4(["fr"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P106"--> c6
v2 --"wdt:P27"--> v3
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v4