query-1de26881f0d9e8b97c548ecc1782778e
Rachmat04
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT ?item ?sitelink ?title
WHERE
{
?sitelink schema:about ?item .
?sitelink schema:isPartOf <https://id.wikipedia.org/> .
?sitelink schema:name ?title .
MINUS
{
_:en schema:about ?item .
_:en schema:isPartOf <https://en.wikipedia.org/> .
}
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink"):::projected
v3("?title"):::projected
a1((" "))
c5([https://en.wikipedia.org/]):::iri
c3([https://id.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v1 --"schema:name"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> c5
end