query-9116e14bfc31dec6c2a1f4f3ca7cc96f
. (P361)part of Each water well can be part of only one mineral water spring. For the inverse connection is used the inverse property ⟩ Q126691224⟨ (P361)part of ⟩ Q126691225⟨ Query that presents all water wells in Bulgaria and which are their mineral water springs that they are part of:
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 ?well ?spring ?wellLabel ?springLabel WHERE {
?well wdt:P31 wd:Q43483;
wdt:P17 wd:Q219;
wdt:P361 ?spring.
SERVICE wikibase:label { bd:serviceParam wikibase:language "bg,en,[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?spring"):::projected
v1("?well"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q43483"]):::iri
c4(["wd:Q219"]):::iri
c9(["bg,en,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P17"--> c4
v1 --"wdt:P361"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end