query-b20b492e8712993c3fe9580dbcbc663d
The following query gets a single item whose parent taxon is any parent taxon of plant (recursively with any depth). I executed it and it timed out. Query 4:
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