min
Description
The min() step is a map step that will discover the smallest number generated from the previous step in the traversal.
Examples
Find the minimum number of recipes created by any person:
g.V().hasLabel('person').map(outE('created').count()).min()