Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

E110

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