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

E203

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

Cannot Access Properties on the Type

Erroneous Code Example

This error occurs when you try to access properties on a type that doesn’t support property access, such as primitive types or certain intermediate query results.

QUERY getValue(count: I32) =>
    result <- count::{value}
    RETURN result

Solution

Ensure you are accessing properties on a node, edge, or vector type that has defined fields.

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