Skip to main content
HelixDB Docs home page
Search HelixDB Docs
⌘K
Ask AI
GitHub
Discord
Support
Search...
Navigation
E110
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
Schema Item Name is a Reserved Type Name
Erroneous Code Example
Solution
E110
Copy page
Copy page
Schema Item Name is a Reserved Type Name
Erroneous Code Example
This error occurs when you try to use a reserved type name as the name for a node, edge, or vector type.
schema.hx
Copy
Ask AI
N
::
String
{
value
:
String
,
}
Solution
Rename the type to something that is not a reserved type name.
schema.hx
Copy
Ask AI
N
::
TextValue
{
value
:
String
,
}
Was this page helpful?
Yes
No
⌘I