query-e8709227250408bab63f8b530e4525fd

rq turtle/ttl

Wikimedia benefactors

Use at

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#>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemLabel ?linkCount
WHERE
{
  wd:Q180 wdt:P859 ?item .
  ?item wikibase:sitelinks ?linkCount .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,de,pt,fr,it,ca" }
}
ORDER BY DESC(?linkCount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?linkCount"):::projected c7(["en,de,pt,fr,it,ca"]):::literal c5(["bd:serviceParam"]):::iri c1(["wd:Q180"]):::iri c1 --"wdt:P859"--> v2 v2 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end