Cole-Greer commented on PR #3327:
URL: https://github.com/apache/tinkerpop/pull/3327#issuecomment-4069308772
One side effect of this change is that a chain of `addV().property()`
traversals no longer results in vertices with sequential ids. I'm not sure
that's necessarily a deal breaker, but it's a bit disappointing. Thoughts?
```
gremlin> g = TinkerGraph.open().traversal()
==>graphtraversalsource[tinkergraph[vertices:0 edges:0], standard]
gremlin> g.addV("person").property("name", "marko").property("age", 29)
==>v[0]
gremlin> g.addV("person").property("name", "vadas").property("age", 27)
==>v[3]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]