query-e341f98f0e79c8564952932025d70d68

rq turtle/ttl

Rivers without any coordinates SELECT * WHERE { ?river wdt:P31/wdt:P279* wd:Q355304 . MINUS { ?river p:P625 [] } }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
#Rivers without any coordinates
SELECT * WHERE {
  ?river wdt:P31/wdt:P279* wd:Q355304 .
  MINUS { ?river p:P625 [] }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?river"):::projected a2((" ")) a1((" ")) c3(["wd:Q355304"]):::iri v1 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"p:P625"--> a2 end