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.

Use of Undeclared Node or Vector Type in Schema

Erroneous Code Example

This error occurs when you reference a node or vector type in an edge definition before that type has been declared in the schema.
E::Follows {
    From: User,
    To: User,
}

// User is not defined yet

Solution

Declare the node or vector type in your schema before using it in an edge definition.
N::User {
    name: String,
}

E::Follows {
    From: User,
    To: User,
}