© 2026 Hedgehog Software, LLC
times(1)
g.V().hasLabel("VertexA").as("_start") .in("EdgeA") .hasLabel("VertexB") .out("EdgeB") .in("EdgeC") .out("EdgeA") .dedup() .where(not(eq("_start"))) .limit(10)
g.V().hasLabel("VertexA").as("_start") .in("EdgeA") .hasLabel("VertexB") .repeat( out("EdgeB") .in("EdgeC") ).times(1) .out("EdgeA") .dedup() .where(not(eq("_start"))) .limit(10)
limit(100)
hasLabel("VertexB")
Index Operations ================ Query execution: # of statement index ops: 481 # of unique statement index ops: 473
Index Operations ================ Query execution: # of statement index ops: 57142 # of unique statement index ops: 57134