query-cff7a0ca06609a30dc4e70920bdb0b76

rq turtle/ttl

Scripts TODO

Use at

PREFIX schema: <http://schema.org/>
SELECT ?item ?page ?url WHERE {
  ?item ^schema:about ?url .
  ?url schema:isPartOf <https://hi.wikipedia.org/>; schema:name ?page .
  MINUS { ?item ^schema:about/schema:isPartOf <https://en.wikipedia.org/> } .
} ORDER BY ?page

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v1("?page"):::projected v2("?url"):::projected a1((" ")) c5([https://en.wikipedia.org/]):::iri c3([https://hi.wikipedia.org/]):::iri v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 v2 --"schema:name"--> v1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; a1 --"schema:about"--> v3 a1 --"schema:isPartOf"--> c5 end