Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Invalid Value Type

Erroneous Code Example

This error occurs when you provide a value that is not a valid literal or identifier.
QUERY createUser() =>
    user <- N<User>::INSERT { name: }
    RETURN user

Solution

Use a literal value or a valid identifier.
QUERY createUser(userName: String) =>
    user <- N<User>::INSERT { name: userName }
    RETURN user