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 Schema Definition

Erroneous Code Example

This error occurs when you define the same node, edge, or vector type more than once in your schema.
N::User {
    name: String,
}

N::User {
    email: String,
}

Solution

Remove the duplicate definition or rename one of the types.
N::User {
    name: String,
    email: String,
}