Skip to main content
HelixDB Docs home page
Search HelixDB Docs
⌘K
Ask AI
GitHub
Discord
Support
Search...
Navigation
E108
Database
HelixQL
Guides
Benchmarks
Changelog
Getting Started
What is HQL?
Helix Types
Schema
Schema definition
Secondary Indexing
Unique Indexes
Default Values
Writing Data
Create nodes
Edges
Vectors
Upsert Operations
Updating Items
Delete Operation
Reading Data
Select nodes
Edges
Vectors
Filtering
Working with Properties
Search
Vector search
Embedding Vectors
Keyword Search
Reranking
Graph Traversals
Traversals From Nodes
Traversals From Edges
Shortest Paths
Aggregation
Aggregation
Result Operations
Group By
Aggregations
Grouping and Aggregation Guide
Advanced Queries
Control Flow
Math Functions
Output Values
Macros
Reference
Error Codes
On this page
Invalid Schema Version
Erroneous Code Example
Solution
E108
Copy page
Copy page
Invalid Schema Version
Erroneous Code Example
This error occurs when the schema version specified is invalid or not supported.
schema.hx
Copy
Ask AI
VERSION
999
N
::
User
{
name
:
String
,
}
Solution
Use a valid schema version number that is supported by your version of Helix.
schema.hx
Copy
Ask AI
VERSION
1
N
::
User
{
name
:
String
,
}
Was this page helpful?
Yes
No
⌘I