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.

Duplicate Field Name in Schema

Erroneous Code Example

This error occurs when you define the same field name more than once within a single node, edge, or vector type.
N::User {
    name: String,
    age: U32,
    name: String,
}

Solution

Remove the duplicate field or rename one of them.
N::User {
    name: String,
    age: U32,
}