query-2827e9a6515f3e222233bb90790cec17

rq turtle/ttl

PropertiesZaragoza monument ID (P3178)image (P18)coordinate location (P625)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?idMonumento ?item ?itemLabel ?imagen ?coordenadas WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item wdt:P3178 ?idMonumento.
  OPTIONAL {
    ?item wdt:P18 ?imagen.
    ?item wdt:P625 ?coordenadas
  }
}
ORDER BY (xsd:integer(?idMonumento))

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?coordenadas"):::projected v1("?idMonumento"):::projected v3("?imagen"):::projected v2("?item"):::projected c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v2 --"wdt:P3178"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 v2 --"wdt:P625"--> v4 end