query-8ec0dd3c8fc41586a98409355900288b
Incorrect tribe name
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item ?taxonName WHERE {
?item wdt:P225 ?taxonName .
?item wdt:P105 wd:Q227936 . # tribus
FILTER(!(STRENDS(?taxonName, "ini") || STRENDS(?taxonName, "eae")))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?taxonName"):::projected
c5(["wd:Q227936"]):::iri
f0[["not (ends-with(?taxonName,'ini') || ends-with(?taxonName,'eae'))"]]
f0 --> v1
v2 --"wdt:P225"--> v1
v2 --"wdt:P105"--> c5