query-5762ed527193c688e5cc3b2706f0f693
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
select ?number_of_sitelinks (count(*) as ?number_of_articles) {
[] wikibase:sitelinks ?number_of_sitelinks .
} group by ?number_of_sitelinks
order by desc(?number_of_sitelinks)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?number_of_articles")
v1("?number_of_sitelinks"):::projected
a1((" "))
a1 --"wikibase:sitelinks"--> v1
bind1[/"count(*)"/]
bind1 --as--o v2