Closed krlawrence closed 9 months ago
Add an example showing how repeat steps can be used to create vertices. Useful when testing.
repeat
gremlin> g.inject(1).repeat(addV('test').property(id,loops())).times(5) ==>v[4] gremlin> g.V().valueMap(true) ==>[id:0,label:test] ==>[id:1,label:test] ==>[id:2,label:test] ==>[id:3,label:test] ==>[id:4,label:test]
Add an example showing how
repeat
steps can be used to create vertices. Useful when testing.