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.

Field Value is Empty

Erroneous Code Example

This error occurs when you provide an empty value for a field in an object remapping or insert operation.
QUERY getUser(id: ID) =>
    user <- N<User>(id)
    RETURN user::{ name: }

Solution

Provide a valid value for the field. The value must be a literal, identifier, traversal, or object.
QUERY getUser(id: ID) =>
    user <- N<User>(id)
    RETURN user::{ name: user.name }