query-d0ad64e4535f41762180261ceafdc015

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item ?taxon_common_name ?parent WHERE {
?item wdt:P1343 wd:Q58450498;
      wdt:P1843 ?taxon_common_name .
  ?item wdt:P171* ?parent . 
  ?parent wdt:P105 wd:Q37517 .
FILTER (langMatches( lang(?taxon_common_name), "en" ) )
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?parent"):::projected v1("?taxon_common_name"):::projected c3(["wd:Q58450498"]):::iri c7(["wd:Q37517"]):::iri f0[["langmatch(?taxon_common_name,'en')"]] f0 --> v1 v2 --"wdt:P1343"--> c3 v2 --"wdt:P1843"--> v1 v2 --"wdt:P171"--> v3 v3 --"wdt:P105"--> c7