query-c8ff0b207e7097839cd5ac6587d62c16
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#>
#defaultView:Map
SELECT ?seismograaf ?seismograafLabel ?geografische_locatie ?gelegen_in_bestuurlijke_eenheid ?gelegen_in_bestuurlijke_eenheidLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?seismograaf wdt:P31 wd:Q160567;
wdt:P17 wd:Q55.
OPTIONAL { ?seismograaf wdt:P625 ?geografische_locatie. }
OPTIONAL { ?seismograaf wdt:P131 ?gelegen_in_bestuurlijke_eenheid. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?gelegen_in_bestuurlijke_eenheid"):::projected
v2("?geografische_locatie"):::projected
v1("?seismograaf"):::projected
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q160567"]):::iri
c8(["wd:Q55"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> c6
v1 --"wdt:P17"--> c8
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P131".-> v3
end