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 addUser(userData: [{name: String, age: I64}]) =>
FOR { name, age, nonexistent_field } IN userData {
AddN<User>({name: name, age: age})
}
RETURN "Users added"
Query addUser(userData: [{name: String, age: I64}]) =>
FOR { name, age } IN userData {
AddN<User>({name: name, age: age})
}
RETURN "Users added"
Was this page helpful?