groupCount
Determines the number of objects specified.
Synopsis
groupCount()
Description
The groupCount() step is a map/sideEffect.
The step determines the number of objects specified.
Examples
Print the number of ingredients per recipe:
g.V().hasLabel('recipe').
groupCount().
by(inE('includedIn').count())