query-a451d1b0306ef6ff3d27b3ad9ea3f6d1
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?prop (COUNT(?prop) as ?count) where {
?item ?prop wd:Q211
}
group by ?prop
order by Desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v2("?item")
v3("?prop"):::projected
c1(["wd:Q211"]):::iri
v2 -->v3--> c1
bind1[/"count(?prop)"/]
v3 --o bind1
bind1 --as--o v4