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

E305

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

Missing Parameter

Example

This error occurs when a required parameter is missing from a function call or operation.

In this example, the SearchV function is called without the k parameter which is required to limit the number of results.

Query searchUsers(vector: [F64]) =>
    users <- SearchV<Document>(vector)
    RETURN users

Solution

Provide all required parameters for functions and operations.

Query searchUsers(vector: [F64]) =>
    users <- SearchV<Document>(vector, 10)
    RETURN users