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

E210

For the complete documentation index optimized for AI agents, see llms.txt.

Identifier Expected to be of Type ID

Erroneous Code Example

This error occurs when an identifier is expected to be of type ID but a different type was provided.

QUERY getUser(userId: String) =>
    user <- N<User>(userId)
    RETURN user
N::User {
    name: String,
}

Solution

Ensure the identifier is of type ID.

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