query-ee44ad99e9f145dddcaeb462fde880fe
TODO
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#>
#Comunes dels Pirineus Orientals segons què les banya
SELECT ?lloc ?layer ?coord ?llocLabel ?layerLabel WHERE {
?lloc wdt:P131* wd:Q12709.
?lloc wdt:P31 wd:Q484170.
?lloc wdt:P625 ?coord.
OPTIONAL {?lloc wdt:P206 ?layer.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca". }
}
#defaultView:Map
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coord"):::projected
v3("?layer"):::projected
v1("?lloc"):::projected
c2(["wd:Q12709"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,ca"]):::literal
c4(["wd:Q484170"]):::iri
v1 --"wdt:P131"--> c2
v1 --"wdt:P31"--> c4
v1 --"wdt:P625"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P206".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end