Traversals
Traversals From Nodes
The Idea
HelixQL is strongly typed. That means it stops you traversing edges or accessing properties that don’t exist.
Therefore, you will have to select your starting points using the N
or E
.
Once you’ve selected your starting points, these operations allow you to navigate through the graph.
Out
Get the nodes connected by outgoing edges of specific type.
Example
In
Get the nodes connected by incoming edges of specific type.
Example
OutE
Get the edges connected by outgoing edges of specific type.
Example
InE
Get the edges connected by incoming edges of specific type.