When performing the following rounds:
graph.addVertex("a") graph.addVertex("b") graph.addVertex("c") graph.traversal().V().range(0,2) graph.traversal().V().range(2,3)
What determines the return order of these vertices when using range functionality? Can I bring all three vertices a, b and c back?
source share