inE
Move to the incoming incident edges, given the edge labels.
Synopsis
inE( [edgeLabel] )
Description
The inE()
step moves the traversal to the incoming incident edges, given the edge labels.
Specifying no edge label will traverse all incident edges.
Examples
Get all incoming incident edges for all the vertices in the graph:
g.V().inE().valueMap()
Get all incoming incident edges for all the vertices with incident edges knows:
g.V().inE('knows).valueMap()