Description
Make it possible to do this:
a = g.V(1).next()
b = g.V(2).next()
g.V(a).addE("friend").to(b)
This will work withRemote() given that detached elements are re-attached prior to usage with AddEdgeStep.
Right now you have to do the above with the ugly withSideEffects prefix appendage.
a = g.addV().next() b = g.addV().next() g.withSideEffect('b',b).V(a).addE('friend').to('b')
Attachments
Issue Links
- links to