query-d068d5fca011dbf90326abe048853d5c
TODO
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 ?cod_IAPH
WHERE
{
?item (wdt:P131*) wd:Q82142;
wdt:P8425 ?cod_IAPH.
?item wdt:P1435 wd:Q23712.
}
ORDER BY ?cod_IAPH
OFFSET 500 LIMIT 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?cod_IAPH"):::projected
v2("?item"):::projected
c2(["wd:Q82142"]):::iri
c5(["wd:Q23712"]):::iri
v2 --"wdt:P131"--> c2
v2 --"wdt:P8425"--> v1
v2 --"wdt:P1435"--> c5