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