query-be9eca2fc3c79768601c5e5610455117
TODO
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 ?q ?qLabel (count(distinct ?a) as ?count)
WHERE { ?a wdt:P553 ?q.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
group by ?q ?qLabel
order by desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?a"):::projected
v4("?count")
v3("?q"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v2 --"wdt:P553"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(?a)"/]
v2 --o bind1
bind1 --as--o v4