query-6ed2fc662438dcd86c850596dd1a76ca

rq turtle/ttl

All ckbwiki templates that have an item on Wikidata

Use at

PREFIX schema: <http://schema.org/>
SELECT ?title WHERE {
  ?page schema:about ?wikidataItem .
  ?page schema:isPartOf <https://ckb.wikipedia.org/> .
  ?page schema:name ?encodedTitle .
  BIND(REPLACE(STR(?encodedTitle), "_", " ") AS ?title)
  FILTER(CONTAINS(?title, "داڕێژە:"))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?encodedTitle") v2("?page") v5("?title"):::projected v3("?wikidataItem") c4([https://ckb.wikipedia.org/]):::iri f0[["contains(?title,'داڕێژە:')"]] f0 --> v5 v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c4 v2 --"schema:name"--> v4 bind1[/"replace(str(?encodedTitle),'_',' ')"/] v4 --o bind1 bind1 --as--o v5