query-74ae210e7f926c54e2dd8be6d16df6fe
Infinit loop caused by cyles when executing a SPARQL query BLZG-1543 BlazegraphTracked by Hi, I want to get instances and all super types of a particular entity using the sparql query : TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT * WHERE {
wd:Q289 wdt:P31/wdt:P279* ?o.
}
Query found at
- https://www.wikidata.org/wiki/Wikidata:Project_chat/Archive/2015/10
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/suggestions
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?o"):::projected
a1((" "))
c1(["wd:Q289"]):::iri
c1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> v1