query-c0c233bb605d0b840ad28bc76bc631bf

rq turtle/ttl

most sitelinks articles PREFIX schema: http://schema.org/

SELECT ?item ?itemLabel ?linkcount WHERE { ?item wikibase:sitelinks ?linkcount . FILTER (?linkcount > 9) . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } GROUP BY ?item ?itemLabel ?linkcount ORDER BY DESC(?linkcount) LIMIT 50

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# most sitelinks articles
PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel ?linkcount
WHERE {
  ?item wikibase:sitelinks ?linkcount .
  FILTER (?linkcount > 9) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
GROUP BY ?item ?itemLabel ?linkcount
ORDER BY DESC(?linkcount)
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?linkcount"):::projected c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?linkcount > '9^^xsd:integer'"]] f0 --> v1 v2 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end