query-42e5763496c52038c4a5aa74cba160ba
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item WHERE {
?item wdt:P225 "Viridiplantae" .
?item wdt:P171 wd:Q756 . # Plantae
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c4(["wd:Q756"]):::iri
c2(["Viridiplantae"]):::literal
v1 --"wdt:P225"--> c2
v1 --"wdt:P171"--> c4