Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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