query-7ee42f7b9faa2480b696ee7f4d003d91
TODO
Use at
- https://query.wikidata.org/sparql
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 .
?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
c5([https://en.wikipedia.org/]):::iri
c2([https://te.wikipedia.org/]):::iri
v1 --"schema:isPartOf"--> c2
v1 --"schema:name"--> v2
v1 --"schema:about"--> v3
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c5
v4 --"schema:name"--> v5