query-1ebefdd44417c87e3d67672e298b73e7
Nebenflüsse des Karnaphuli oder Feni
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 ?itemDescription WHERE {
?item wdt:P31 wd:Q4022. # ist ein = Fluss
{ ?item wdt:P403 wd:Q766956. } # mündet in = Karnaphuli
UNION # oder (Vereinigungsmenge)
{ ?item wdt:P403 wd:Q2982759. } # mündet in = Feni
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c4(["wd:Q766956"]):::iri
c5(["wd:Q2982759"]):::iri
c7(["bd:serviceParam"]):::iri
c2(["wd:Q4022"]):::iri
c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P31"--> c2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P403"--> c5
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P403"--> c4
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end