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.

Empty Object Remapping

This error occurs when you define an object remapping with no fields.

Example

Query getUser(userId: ID) =>
    user <- N<User>(userId)
    RETURN user::{}

Solution

Query getUser(userId: ID) =>
    user <- N<User>(userId)
    RETURN user::{name}