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

E604

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

Update Restriction

Erroneous Code Example

This error occurs when you try to perform an update operation on something other than nodes or edges.

In this example, the update step is used on a vector type which is not allowed yet.

Query updateVector(vectorId: ID) =>
    vector <- V<Vector>(vectorId)::UPDATE({field1: "updated value"})
V::Vector {
    field1: String,
}