Re: addE doesn't create more than 1 edge
HadoopMarc <bi...@...>
Hi Anton, It is not a bug: the addE() step only adds one edge per traverser. Also, using g.V() twice is an anti-pattern. Try it the other way around, something like (not tested): g.V().hasLabel('person').has('id', within('p1', 'p2')).as('a').addE('LINK').from('a') Now the addE() step runs on two traversers. HTH, Marc Op dinsdag 15 december 2020 om 12:22:56 UTC+1 schreef Anton Eroshenko:
|
|