Changelog
Last updated
Was this helpful?
Last updated
Was this helpful?
Data Mapping - Duplicate error message displayed on required field failure in monitoring page fixed
Data Mapping - Delete field in target object when its empty (null, undefined, void, empty object, empty array)
Scheduler - Schedule jobs stopped after scheduler service restarted
Flow Step - Current iteration data will be stored inside currentCtx.item
.
currentIterData
still work but, when we wanna store any data to current iteration data then migrate to currentCtx.<field>
Data Mapping - String literals can be directly mapped using source field with either wrapped into single quote or double quote
Source field : "Nexus"
Target field : ProductName
Output : { ProductName: "Nexus" }
Data Mapping - Number can be directly mapped using source field
Source field : 20000.00
Target field : Amount
Output : { Amount: 20000.00 }
Data Mapping - JSON Object can be directly mapped using source field wrapped with tick symbol(`)
Source field : `{"Name": "Nexus", "Version": "0.8.0-alpha.6"}`
Target field : Amount
Output : { Name: "Nexus", Version: 0.8.0-alpha.6
-------------------------------------------------------------------------------------------------
Source field : `["Nexus", "Oracle", "ADB"]`
Target field : Amount
Output : ['Nexus','Oracle','ADB']
Data Mapping - Global context, meta and currentCtx can be directly mapped to target field even with input assignment has been set already
Sample data mapping screen