query-4174f092a9d009305cd838eaa79e60f5
How can I fix it? There is an alternative way to build this mapping? Anyway, my original issue was querying something like "all Italian Wikipedia's articles with property P856":
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?title
WHERE {
?item wdt:P856 ?statement .
?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;
v1("?item")
v3("?link")
v2("?statement")
v4("?title"):::projected
c4([https://it.wikipedia.org/]):::iri
v1 --"wdt:P856"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c4
v3 --"schema:name"--> v4