query-9c65e1c6e71787d3ca08ecd850dbe29c
I can get result without timeout but it is only for items that have this property : (P1705)native label By trying to use
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P31 wd:Q101352.
?item wdt:P1705 ?itemLabel
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?itemLabel"):::projected
c2(["wd:Q101352"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P1705"--> v2