Trying to 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, which is a meta property, on the following data, however I'd also like to update the 'value' field which is on the same level as the 'id' field. My question is how do I tweak the query to also update the value along with the Dates.
[ { "id": "1234", "value": "value", "label": "PropertyName", "properties": { "currentDate": 12/12/2023, "previousDate": 10/10/2023 } } ]
https://stackoverflow.com/questions/76964792/gremlin-query-update-a-property-value-based-on-another-property
Stack Overflow
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/20...
1 Reply
i didn't respond to this question here since i saw activity on it in stackoverflow but now the question appears to be deleted for some reason. were you able to get an answer?