query-98657b97bccc03de6d8adec4f5f07868
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#>
SELECT DISTINCT ?item ?itemLabel ?coord
WHERE
{
VALUES ?type {wd:Q15700818 wd:Q8497541}
?item wdt:P1435 ?type.
{?item wdt:P131* wd:Q20986417 .}
UNION
{?item wdt:P276 wd:Q6225 . }
OPTIONAL {?item wdt:P625 ?coord . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v2("?item"):::projected
v1("?type")
c8(["bd:serviceParam"]):::iri
c5(["wd:Q6225"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q20986417"]):::iri
bind0[/VALUES ?type/]
bind0-->v1
bind00(["wd:Q15700818"])
bind00 --> bind0
bind01(["wd:Q8497541"])
bind01 --> bind0
v2 --"wdt:P1435"--> v1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P276"--> c5
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P131"--> c3
end
union0r <== or ==> union0l
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end