query-58a3bd137da7146222d07b0dfe75b9bb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?title_en ?title_te ?link_en ?link_te
WHERE
{
?link_te schema:isPartOf <https://te.wikipedia.org/> .
?link_te schema:name ?title_te .
?link_te schema:about ?item .
MINUS { ?item wdt:P31/wdt:P279* wd:Q17379835. }
?link_en schema:about ?item .
?link_en schema:isPartOf <https://en.wikipedia.org/> .
?link_en schema:name ?title_en .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item")
v4("?link_en"):::projected
v1("?link_te"):::projected
v5("?title_en"):::projected
v2("?title_te"):::projected
a1((" "))
c7(["wd:Q17379835"]):::iri
c8([https://en.wikipedia.org/]):::iri
c2([https://te.wikipedia.org/]):::iri
v1 --"schema:isPartOf"--> c2
v1 --"schema:name"--> v2
v1 --"schema:about"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c7
end
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c8
v4 --"schema:name"--> v5