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 Identifier

This error occurs when you use an invalid identifier in your HelixQL query.

Erroneous Code Example

This error occurs when you use an invalid identifier in your HelixQL query. For example, Out is a reserved keyword so it cannot be used as a variable or a parameter name.
QUERY getUser(id: ID) =>
    Out <- N<User>(id)
    RETURN Out

Solution

Rename the variable or parameter to a valid identifier.
QUERY getUser(id: ID) =>
    user <- N<User>(id)
    RETURN user