Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt

Use this file to discover all available pages before exploring further.

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