Skip to main content

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