This activity allows you to map values to the working attribute set of an action.
flogo install github.com/project-flogo/contrib/activity/mapper
Name | Type | Description |
---|---|---|
mappings | object | Set of mappings to execute |
The below example allows you to configure the activity to map the output ‘value’ of activity ‘myActivity’ to FlowAttr1
{
"id": "mapper",
"name": "Mapper",
"activity": {
"ref": "github.com/project-flogo/contrib/activity/mapper",
"input": {
"mappings":
{
"FlowAttr1": "=$activity[myActivity].value"
}
]
}
}
}