E201
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 getProduct(id: ID) =>
product <- N<Product>(id)
RETURN product
N::User {
name: String,
}
// Product is not defined
N::User {
name: String,
}
N::Product {
name: String,
price: F64,
}
Was this page helpful?