I am trying to use the following script to get the shortest path:
g.V.filter{it.name == 'station1'}.out.dedup().loop(2){it.object.name != "station5" & it.loops < 30}.path{it.name}
If there are more than 1 shortest path in the graph, how do I modify the script to list all of them?