E601
For the complete documentation index optimized for AI agents, see llms.txt.
Invalid Traversal
Note: This error is not currently emitted by the compiler.
Erroneous Code Example
This error occurs when you attempt a malformed traversal.
Query getUser() =>
user <- N()
Solution
Ensure each step in the traversal is valid.
Query getUser() =>
user <- N<User>
RETURN user