query-b9bec3face98e68ba282d52a032f0fcf
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?scientificname ?item WHERE
{
VALUES ?scientificname { 'Arbor' 'Leo' 'Alces' 'Blasia pusilla'} # add your 450 labels here
?item wdt:P225 ?scientificname .
}
ORDER BY ?scientificname
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v2("?scientificname"):::projected
bind0[/VALUES ?scientificname/]
bind0-->v2
bind00(["Arbor"])
bind00 --> bind0
bind01(["Leo"])
bind01 --> bind0
bind02(["Alces"])
bind02 --> bind0
bind03(["Blasia pusilla"])
bind03 --> bind0
v2 --"wdt:P225"--> v2