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 getUser(userId: ID) =>
user <- N<User>(userId)
RETURN user::|u|{
userID: u::ID
}::Out<Knows>
Query getUser(userId: ID) =>
user <- N<User>(userId)
out_users <- user::Out<Knows>
RETURN out_users, user::|u|{
userID: u::ID
}::Out<Knows>
Was this page helpful?