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