Closed msacks16 closed 5 years ago
https://kelvinlawrence.net/book/Gremlin-Graph-Guide.html#upsert g.V(3).fold(). coalesce(unfold().property('runways','3'), addV('airport').property('runways',3))
v[3]
should be:
g.V(3).fold(). coalesce(unfold().property('runways',3), addV('airport').property('runways',3))
Thanks Max
Fixed in release 282 - October 25th 2019
https://kelvinlawrence.net/book/Gremlin-Graph-Guide.html#upsert g.V(3).fold(). coalesce(unfold().property('runways','3'), addV('airport').property('runways',3))
v[3]
should be:
g.V(3).fold(). coalesce(unfold().property('runways',3), addV('airport').property('runways',3))
v[3]