query-9f244adf2d46116923f6489cff15c135

rq turtle/ttl

Links to some articles in sh.wikipedia, marked as duplicates SELECT ?item ?label ?article WHERE { ?item wdt:P31 wd:Q17362920 . ?item rdfs:label ?label filter (lang(?label) = "sh") . ?article schema:about ?item . ?article schema:inLanguage "sh" . ?article schema:isPartOf https://sh.wikipedia.org/ . } ORDER BY ?label

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#Links to some articles in sh.wikipedia, marked as duplicates
SELECT ?item ?label ?article WHERE {
    ?item wdt:P31 wd:Q17362920 .
    ?item rdfs:label ?label filter (lang(?label) = "sh") .
    ?article schema:about ?item .
    ?article schema:inLanguage "sh" .
    ?article schema:isPartOf <https://sh.wikipedia.org/> .
} 
ORDER BY ?label

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v2("?item"):::projected v1("?label"):::projected c1(["sh"]):::literal c8([https://sh.wikipedia.org/]):::iri c3(["wd:Q17362920"]):::iri f0[["?label = 'sh'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"rdfs:label"--> v1 v3 --"schema:about"--> v2 v3 --"schema:inLanguage"--> c1 v3 --"schema:isPartOf"--> c8