> ## Documentation Index
> Fetch the complete documentation index at: https://helix-claude-document-return-objects-rxi6v.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# E110

# 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.

<CodeGroup>
  ```helixql schema.hx theme={null}
  N::String {
      value: String,
  }
  ```
</CodeGroup>

## Solution

Rename the type to something that is not a reserved type name.

<CodeGroup>
  ```helixql schema.hx theme={null}
  N::TextValue {
      value: String,
  }
  ```
</CodeGroup>
