query-cb9d32589e1cac00f92eb39ab9c095bc

rq turtle/ttl

Query Service not Working So I decided to fnd rivers in the USA with a query, so I used the valid query:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item ?itemLabel ?itemDescription WHERE {
  ?item wdt:P31 wd:Q4022.
  ?item wdt:P17 wd:Q30.
}
#This is to make the template work

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c2(["wd:Q4022"]):::iri c4(["wd:Q30"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P17"--> c4