query-ba4fb0f611b54930ed887027582f1075
Malformed hybrid names
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item ?taxonName WHERE {
?item wdt:P225 ?taxonName .
FILTER (CONTAINS(?taxonName, "× "))
}
ORDER BY ASC(?taxonName)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?taxonName"):::projected
f0[["contains(?taxonName,'× ')"]]
f0 --> v1
v2 --"wdt:P225"--> v1