query-54ec98141d9bf28ebf75b57a54e3ff90

rq turtle/ttl

SPARQL-Abfrage: one or more occurrences

Use at

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 ?lake ?lakeLabel ?outflow ?outflowLabel ?mouth ?mouthLabel WHERE {
  ?lake wdt:P17 wd:Q183. # für Deutschland
  ?lake wdt:P31 wd:Q23397.
  ?lake wdt:P201 ?outflow.
  ?outflow wdt:P403+ ?mouth. # mündet in, one or more occurrences 
  #?p wdt:P31 wd:Q131681.
  #?p wdt:P200/wdt:P201 wd:Q672715
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de" .
  }
} ORDER BY DESC(?lake) LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?lake"):::projected v3("?mouth"):::projected v2("?outflow"):::projected c4(["wd:Q23397"]):::iri c10(["de"]):::literal c8(["bd:serviceParam"]):::iri c2(["wd:Q183"]):::iri v1 --"wdt:P17"--> c2 v1 --"wdt:P31"--> c4 v1 --"wdt:P201"--> v2 v2 --"wdt:P403"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end