query-3a103dfd66c5aaccd59a1907c4680b97
The following query gets a single item whose parent taxon is plant. I executed it and it finished in 222ms. Query 3:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item {
?item wdt:P171 wd:Q756.
}
LIMIT 1
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c2(["wd:Q756"]):::iri
v1 --"wdt:P171"--> c2