addV('src').
property(id,'sales__src').
property("index1","brand").
property("index2","time").
property("index3","city1").
property("index4","city2").
property("index5","city3").
property("index6","city4").
property("index7","city5").
property("index8","city6").
property("index9","city7").
property("index10","city8").
property("index11","city9").
property("index12","city10").
as("sales_src").
When I plot in a graph
%%gremlin -p v,inE,outV,inE,outV
g.V('city_brand').inE().outV().inE().outV().path().
by(valueMap().with(WithOptions.tokens))
The order of the properties index became
index1
index11
index12
How to force the order to be in 1,2,3,4 order?