query-c94bd5d2a6659e70ba5d11bf427b7081
Botanists whose botanical abbreviation begins with a certain string
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?q ?name WHERE {
?q wdt:P428 ?name FILTER(STRSTARTS(?name,"H"))
} ORDER BY ?name
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?name"):::projected
v2("?q"):::projected
f0[["starts-with(?name,'H')"]]
f0 --> v1
v2 --"wdt:P428"--> v1