query-d8427852c488e4eb25a9bd963d34430f

rq turtle/ttl

Mapping from all the items to all the Italian Wikipedia's articlesI'm working with python and I need to build a mapping that takes in input a Wikidata item and returns the article of Italian Wikipedia. It would be very simple if only this query didn't get timeout:

Use at

PREFIX schema: <http://schema.org/>
SELECT ?item ?title
WHERE {
  ?link schema:about ?item ;
        schema:isPartOf <https://it.wikipedia.org/> ;
        schema:name ?title .
}
LIMIT 2000000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?link") v3("?title"):::projected c3([https://it.wikipedia.org/]):::iri v1 --"schema:about"--> v2 v1 --"schema:isPartOf"--> c3 v1 --"schema:name"--> v3