Skip to main content

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,
}