Missing Parameter
Example
This error occurs when a required parameter is missing from a function call or operation. In this example, theSearchV function is called without the k parameter which is required to limit the number of results.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 CLI v2 is now live! See Getting Started for details.
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
Query searchUsers(vector: [F64]) =>
users <- SearchV<Document>(vector, 10)
RETURN users
Was this page helpful?