Azure – Gremlin Query – Update a property value based on another property
I have a query that looks something like the following g.V('9999').hasLabel('someLabel'). properties('PropertyName'). hasId('1234'). property('currentDate',12/12/2023). property('previousDate',10/10/2023)` Using this query when an Id matches the passed value on hasId the data needs to be updated. I'm able to update currentDate & previousDate,…