query-cff7a0ca06609a30dc4e70920bdb0b76
Scripts TODO
Use at
- https://query.wikidata.org/sparql
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
- https://www.wikidata.org/wiki/User:Capankajsmilyo
- https://www.wikidata.org/wiki/Wikidata:Project_chat/Archive/2017/05
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