Use this file to discover all available pages before exploring further.
HelixQL is deprecated in HelixDB v2. Queries are now written with the Rust DSL and dispatched as JSON — see the Querying guide. This section is kept as a reference for legacy HelixQL projects.
For the complete documentation index optimized for AI agents, see llms.txt.
The following examples would not work as the types don’t match
QUERY UpdateUser(userID: ID) => // No email field in Person node updatedUsers <- N<Person>(userID)::UPDATE({ email: "john@example.com" }) // Age as string instead of U32 updatedUsers <- N<Person>(userID)::UPDATE({ age: "Hello" }) RETURN updatedUsers