Dropping a specific value of an array-property #854
-
hi, I am trying to remove a specific item from an array of a vertex-property. In the console this statement does the trick The closest I got is this: any hints would be appreciated! cheers, Tilli |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
How about
|
Beta Was this translation helpful? Give feedback.
How about
g.V<TestVertex>(v.Key()).SideEffect(_ => _.Properties(e => e.ListOne).Where(p => p.Value == "V3").Drop())