Hello, I have a use case where the ZIS flow goes into a certain state and then needs to change an already initialized value. I am having a hard time finding documentation on how to change a value using a transform action. Is this possible?
"modifyValue": {
"Type": "Action",
"ActionName": "zis:common:transform:Jq",
"Parameters": {
"data.$": "$.data",
"expr": ' < expression to modify value to an empty string or Null >'
},
"ResultPath": "$.ChangedData",
"Next": "nextAction"
},
Thanks