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 Schema Version

Erroneous Code Example

This error occurs when the schema version specified is invalid or not supported.
VERSION 999

N::User {
    name: String,
}

Solution

Use a valid schema version number that is supported by your version of Helix.
VERSION 1

N::User {
    name: String,
}