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.

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.
N::String {
    value: String,
}

Solution

Rename the type to something that is not a reserved type name.
N::TextValue {
    value: String,
}