g.V(fromVertexId).
repeat(both()).
until(and(hasId(toVertexId),
loops().is(lte(maxHops)))).
path().dedup()g.V(fromVertexId).
repeat(both()).times(2).
path().dedup().count()
==>90g.V(fromVertexId).
repeat(both()).
timeLimit(60000).
path()
----------------
g.V(fromVertexId).
repeat(timeLimit(60000).both()). path()
g.V(fromVertexId).
repeat(both().simplePath()). until(and(hasId(toVertexId),
loops().is(lte(maxHops)))).
path().dedup()g.V(3).repeat(out().simplePath()).emit().times(3).has('code','MIA').
limit(5).path().by('code')Can someone let me know how to use timeLimit step in the query if I want to apply it globally.