query-9ae748e00fc3102e0835267c45895b17
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?url ?coord WHERE {
?file wdt:P180 wd:Q1392526 .
?file schema:url ?url .
?file wdt:P276 wd:Q2028. # location = Verona
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?file")
v2("?url"):::projected
c2(["wd:Q1392526"]):::iri
c5(["wd:Q2028"]):::iri
v1 --"wdt:P180"--> c2
v1 --"schema:url"--> v2
v1 --"wdt:P276"--> c5