query-c3c0d4449f305b59057f4feeab3d4d6d

rq turtle/ttl

Unfortunately it times out as well. Anybody knows how to fix it? Queries like

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item  
{
    ?item  wdt:P171  ?pItem    . # parent taxon
    ?item  wdt:P105  wd:Q34740 . # child rank
    ?pItem wdt:P105  wd:Q7432  . # parent rank
}
limit 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?pItem") c3(["wd:Q34740"]):::iri c4(["wd:Q7432"]):::iri v1 --"wdt:P171"--> v2 v1 --"wdt:P105"--> c3 v2 --"wdt:P105"--> c4