Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

E645

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}