-FROM GRAPH_TABLE (snb
MATCH (a:Person WHERE a.id = 17592186044461)-[k:knows]-> *(b:Person where b.id = 35184372088856)
COLUMNS (a.id as a_id, b.id as b_id)
) tmp LIMIT 20
This query should be interpreted as an ALL path query, which would lead to infinite results if you follow the standard. A path prefix like ANY or ANY-k or a path mode such as TRAIL, ACYCLIC, or SIMPLE should be used to avoid infinite results.
In the current implementation, this is allowed. It could perhaps be detected in the transformer that we have an unbounded path query with an implied ALL path prefix and then an error should be thrown that ALL path is not implemented
The following query is not allowed:
This query should be interpreted as an ALL path query, which would lead to infinite results if you follow the standard. A path prefix like ANY or ANY-k or a path mode such as TRAIL, ACYCLIC, or SIMPLE should be used to avoid infinite results.
In the current implementation, this is allowed. It could perhaps be detected in the transformer that we have an unbounded path query with an implied ALL path prefix and then an error should be thrown that ALL path is not implemented