query-8cea6ae9da34831a15fc6ec800f08848

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?title ?article WHERE {
  ?item wikibase:sitelinks 1;
        ^schema:about ?article .
  ?article schema:isPartOf <https://id.wikipedia.org/>; schema:name ?title .
  MINUS { ?item wdt:P31 wd:Q4167836 }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?item"):::projected v3("?title"):::projected c2(["1^^xsd:integer"]):::literal c5([https://id.wikipedia.org/]):::iri c8(["wd:Q4167836"]):::iri v1 --"wikibase:sitelinks"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> c8 end