E303
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
QUERY createUser() =>
user <- N<User>::INSERT { age: "not a number" }
RETURN user
N::User {
name: String,
age: U32,
}
QUERY createUser() =>
user <- N<User>::INSERT { age: 25 }
RETURN user
N::User {
name: String,
age: U32,
}
Was this page helpful?