query-86e841edc9301814f660dcae174002c1
Rivers
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemDescription WHERE {
?item wdt:P31/wdt:P279* wd:Q355304 ; schema:description ?itemDescription .
FILTER (lang(?itemDescription) = "en").
FILTER regex (?itemDescription, "^A ").
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDescription"):::projected
a1((" "))
c5(["wd:Q355304"]):::iri
f0[["regex(?itemDescription,'^A ')"]]
f0 --> v1
f1[["?itemDescription = 'en'"]]
f1 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v2 --"schema:description"--> v1