Is there a way to retrieve the count of selected values in a single query using gremlin?
g
.V("00000000000000000000000000000000").outE().as("fpEdges")
.V("facade00-0000-4000-a000-000000000000").inE().as("vstEdges")
.select("fpEdges", "vstEdges")
.by(select('vstEdges').unfold().count())
When run separately, these result in counts of 38 and 2.
Is it possible to obtain these statistics in a single query?
Thank you!