Unknown Vector Type
Erroneous Code Example
This error occurs when you try to reference a vector type that is not defined in your schema.Solution
Define the vector typeDocument in your schema.
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.
QUERY search(query: String) =>
results <- SearchV<Document>(Embed(query), 10)
RETURN results
Document in your schema.
V::Document {
// fields
}
Was this page helpful?