Invalid Step
Erroneous Code Example
This error occurs when you try to use a step that is not valid in the current context. In this example, theOutE<Knows> step results in edges, but the Out step can only be used on nodes.
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.
OutE<Knows> step results in edges, but the Out step can only be used on nodes.
Query getUser() =>
user <- N<User>::OutE<Knows>::Out<Knows>
RETURN user
Query getUser() =>
user <- N<User>::Out<Knows>::Out<Knows>
RETURN user
Was this page helpful?