E206
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 { name: }
RETURN user
N::User {
name: String,
}
QUERY createUser(userName: String) =>
user <- N<User>::INSERT { name: userName }
RETURN user
N::User {
name: String,
}
Was this page helpful?