query-84e2a74c88c15697b83b7ee68a9a316f
Catedrales de EspaƱa
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?catedral ?catedralLabel ?coordenadas (SAMPLE(?imagen) AS ?fotografia) WHERE {
?catedral wdt:P31/wdt:P279* wd:Q2977 ;
wdt:P17 wd:Q29 ;
wdt:P625 ?coordenadas .
OPTIONAL {?catedral wdt:P18 ?imagen .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
} GROUP BY ?catedral ?catedralLabel ?coordenadas
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?catedral"):::projected
v2("?coordenadas"):::projected
v4("?fotografia")
v3("?imagen"):::projected
a1((" "))
c3(["wd:Q2977"]):::iri
c5(["wd:Q29"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["es"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
v1 --"wdt:P625"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end
bind1[/"sample(?imagen)"/]
v3 --o bind1
bind1 --as--o v4