query-7ad3877d5cb9c94ed8a6f31697ccbbc4

rq turtle/ttl

Moldovans: most number of sitelinks (but not in English Wikipedia) PREFIX schema: http://schema.org/

SELECT ?item ?itemLabel (COUNT(DISTINCT ?sitelink) AS ?linkcount) WHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P27 wd:Q217 . ?sitelink schema:about ?item . FILTER NOT EXISTS { ?article schema:about ?item . ?article schema:inLanguage "en" . ?article schema:isPartOf https://en.wikipedia.org/ } SERVICE wikibase:label { bd:serviceParam wikibase:language "en,ro,de,es,ar,fr" } } GROUP BY ?item ?itemLabel ORDER BY DESC(?linkcount)

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#>
#Moldovans: most number of sitelinks (but not in English Wikipedia)
PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel (COUNT(DISTINCT ?sitelink) AS ?linkcount) WHERE {
    ?item wdt:P31 wd:Q5 .
    ?item wdt:P27 wd:Q217 .
    ?sitelink schema:about ?item .
  FILTER NOT EXISTS {
    ?article schema:about ?item .
    ?article schema:inLanguage "en" .
    ?article schema:isPartOf <https://en.wikipedia.org/>
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,ro,de,es,ar,fr" }
}
GROUP BY ?item ?itemLabel
ORDER BY DESC(?linkcount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article") v3("?item"):::projected v5("?linkcount") v4("?sitelink"):::projected c3(["en"]):::literal c5([https://en.wikipedia.org/]):::iri c13(["en,ro,de,es,ar,fr"]):::literal c11(["bd:serviceParam"]):::iri c9(["wd:Q217"]):::iri c7(["wd:Q5"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:about"--> e0v2 e0v1 --"schema:inLanguage"--> e0c3 e0v1 --"schema:isPartOf"--> e0c5 e0v1("?article"):::projected e0v2("?item"):::projected e0c5([https://en.wikipedia.org/]):::iri e0c3(["en"]):::literal end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 f0 --> c2 f0 --> c3 f0 --> c4 f0 --> c5 v2 --"schema:about"--> v3 v2 --"schema:inLanguage"--> c3 v2 --"schema:isPartOf"--> c5 v3 --"wdt:P31"--> c7 v3 --"wdt:P27"--> c9 v4 --"schema:about"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end bind2[/"count(?sitelink)"/] v4 --o bind2 bind2 --as--o v5