Missing To ID
Erroneous Code Example
This error occurs when you try to create an edge without specifying the target node ID. In this example, theAddE step is used without specifying the To parameter.
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.
AddE step is used without specifying the To parameter.
Query addEdge(from: ID, to: ID) =>
AddE<Follows>::From(from)
Query addEdge(from: ID, to: ID) =>
AddE<Follows>::From(from)::To(to)
Was this page helpful?