query-bfa0da56f43aa34dee99e80bbb15c6ff

rq turtle/ttl

Llywelyn2000

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?page_en
{
  ?item wdt:P31 wd:Q4167410 . # is Wikimedia disambiguation page
  ?page_en schema:about ?item .
  ?page_en schema:isPartOf <https://en.wikipedia.org/> .
  MINUS
  {
    ?page_cy schema:about ?item .
    ?page_cy schema:isPartOf <https://cy.wikipedia.org/> .
  }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?page_cy") v2("?page_en"):::projected c6([https://cy.wikipedia.org/]):::iri c5([https://en.wikipedia.org/]):::iri c2(["wd:Q4167410"]):::iri v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c6 end