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.

Item Type Not in Schema

Erroneous Code Example

This error occurs when you reference an item type in a query that is not defined in your schema.
QUERY getProduct(id: ID) =>
    product <- N<Product>(id)
    RETURN product

Solution

Define the item type in your schema before using it in queries.
N::User {
    name: String,
}

N::Product {
    name: String,
    price: F64,
}