query-ac459d3ece904bed7718ec8135ba1475

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?article ?id
WHERE {
  ?item wdt:P31 wd:Q44613 .
  ?de schema:about ?item ; schema:isPartOf <https://de.wikipedia.org/> .
  MINUS { ?it schema:about ?item ; schema:isPartOf <https://it.wikipedia.org/> } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?de") v3("?it") v1("?item"):::projected c5([https://de.wikipedia.org/]):::iri c6([https://it.wikipedia.org/]):::iri c2(["wd:Q44613"]):::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