TinkerPop Vertex Steps
Fundamental steps of Gremlin language
All the vertex steps are flatMap steps.
- out
-
Move to the outgoing adjacent vertices, given the edge labels.
- in
-
Move to the incoming adjacent vertices, given the edge labels.
- both
-
Move to both the outgoing and the incoming adjacent vertices, given the edge labels.
- outE
-
Move to the outgoing incident edges, given the edge labels.
- inE
-
Move to the incoming incident edges, given the edge labels.
- bothE
-
Move to both the outgoing and the incoming incident edges, given the edge labels.
- outV
-
Move to the outgoing vertex.
- inV
-
Move to the incoming vertex.
- bothV
-
Move to both the outgoing and the incoming vertex.
- otherV
-
Move to the vertex that was not the vertex that was moved from.