query-f276b1fcac399bae5b4f6d47a738f557
ErrorsHi! We have 207 items with errors today:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?taxon ?penLabel ?penDescr WHERE {
?taxon wdt:P171 wd:Q529584 . # Q529584 Aneura "genus of PLANTS"!
?taxon schema:description ?penDescr. FILTER((LANG(?penDescr)) = "en") .
OPTIONAL { ?taxon rdfs:label ?penLabel . FILTER((LANG(?penLabel)) = "en") }
FILTER((STR(?penDescr)) = "species of insect") . # "species of INSECT"!
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?penDescr"):::projected
v2("?penLabel"):::projected
v3("?taxon"):::projected
c4(["wd:Q529584"]):::iri
f0[["str(?penDescr) = 'species of insect'"]]
f0 --> v1
f1[["?penDescr = 'en'"]]
f1 --> v1
v3 --"wdt:P171"--> c4
v3 --"schema:description"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end