query-0b4107dc12e9818bf91c45a376d3d41a
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 ?taxonName WHERE {
?item wdt:P105 wd:Q4886 . # Cultivar
?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
c3(["wd:Q4886"]):::iri
f0[["contains(?taxonName,''')"]]
f0 --> v1
v2 --"wdt:P105"--> c3
v2 --"wdt:P225"--> v1