query-28603a87337c76eb132976f412276203
Combien y a-t-il d'é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 (COUNT (?item) as ?count) WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
?item wdt:P106 wd:Q188094.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?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
v1 --"wdt:P106"--> c6
bind1[/"count(?item)"/]
v1 --o bind1
bind1 --as--o v2