query-58259e590123536312f0f5e0302ec786

rq turtle/ttl

All water bodies in morocco SELECT ?river ?riverLabel WHERE { ?river wdt:P17 wd:Q1028; wdt:P31/wdt:P279* wd:Q863944. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". } }

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#>
# All water bodies in morocco
SELECT ?river ?riverLabel WHERE {
  ?river wdt:P17 wd:Q1028;
         wdt:P31/wdt:P279* wd:Q863944.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?river"):::projected a1((" ")) c2(["wd:Q1028"]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en,fr"]):::literal c5(["wd:Q863944"]):::iri v1 --"wdt:P17"--> c2 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end