group
Organize returned objects by a function of the objects.
Returns a list of objects.
The group() step is a map/sideEffect.
Synopsis
group()
Example
List recipes by name, grouping by cuisine:
g.V().hasLabel('recipe').
group().
by('cuisine').
by('name')