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.

Reserved Field Name

Erroneous Code Example

This error occurs when you try to use a reserved field name in your schema or query. For example, the field id is a reserved field name for any item type.
N::User {
    id: String,
}

Solution

Rename the field to a valid identifier.
N::User {
    github_id: String,
}