query-1cd65281683b5a511635dd0b1ad74672
Caves around the world
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 ?coordinate_location ?image ?countryLabel WHERE {
?item (wdt:P31/wdt:P279*) wd:Q35509.
OPTIONAL { ?item wdt:P625 ?coordinate_location. }
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?item wdt:P17 ?country. }
MINUS { ?item wdt:P576 _:b1. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en, bg". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coordinate_location"):::projected
v5("?country")
v4("?image"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
a2((" "))
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q35509"]):::iri
c11(["en, bg"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P17".-> v5
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P576"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end