query-674078174e8ae968aac5c843f804d573

rq turtle/ttl

Featured articles of Lithuanian Wikipedia

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Featured articles of Lithuanian Wikipedia
#defaultView:Table
SELECT ?lang ?name ?itemLabel ?sitelink ?linkcount ?item WHERE {
  ?item wikibase:sitelinks ?linkcount.
  ?sitelink schema:isPartOf <https://lt.wikipedia.org/>.
  ?sitelink schema:name ?name;
    schema:inLanguage ?lang;
    schema:about ?item;
    wikibase:badge wd:Q17437796.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?linkcount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v5("?lang"):::projected v1("?linkcount"):::projected v4("?name"):::projected v3("?sitelink"):::projected c3([https://lt.wikipedia.org/]):::iri c10(["bd:serviceParam"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal c8(["wd:Q17437796"]):::iri v2 --"wikibase:sitelinks"--> v1 v3 --"schema:isPartOf"--> c3 v3 --"schema:name"--> v4 v3 --"schema:inLanguage"--> v5 v3 --"schema:about"--> v2 v3 --"wikibase:badge"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end