Trying to get the corresponding count of selected values in a single query with 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 executed individually, these return 38 and 2 respectively.
Is there a way to get this statistics with a single query ?
Thanks!