query-2c407089d6202e4101d80da56ffd48e6

rq turtle/ttl

Violation of Rule 13a (Names of Subspecies)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item ?taxonName WHERE {
      ?item wdt:P225 ?taxonName .
      ?item wdt:P105 wd:Q68947 .
      ?item (wdt:P171)* ?higherParent .  
      ?higherParent wdt:P944 wd:Q743780 .
      Filter(!REGEX(?taxonName, " subsp. "))
}
ORDER BY ASC(?taxonName)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?higherParent") v2("?item"):::projected v1("?taxonName"):::projected c7(["wd:Q743780"]):::iri c4(["wd:Q68947"]):::iri f0[["not regex(?taxonName,' subsp. ')"]] f0 --> v1 v2 --"wdt:P225"--> v1 v2 --"wdt:P105"--> c4 v2 --"wdt:P171"--> v3 v3 --"wdt:P944"--> c7