E646
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 getUser(id: ID) =>
user <- N<User>(id)
RETURN user::{ name: }
N::User {
name: String,
email: String,
}
QUERY getUser(id: ID) =>
user <- N<User>(id)
RETURN user::{ name: user.name }
N::User {
name: String,
email: String,
}
Was this page helpful?