Field Previously Excluded
Erroneous Code Example
This error occurs when you try to access or include a field that has been previously excluded in the traversal. In this example, theemail field is excluded in the traversal, but is being accessed.
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.
email field is excluded in the traversal, but is being accessed.
Query getUser(userId: ID) =>
user <- N<User>(userId)::!{email}
RETURN user::{email}
Query getUser(userId: ID) =>
user <- N<User>(userId)
RETURN user::{email}
Was this page helpful?