This activity allows update an existing object’s values.
flogo install github.com/project-flogo/contrib/activity/updobject
Name | Type | Description |
---|---|---|
object | object | The object to update |
values | object | The keys/properties and values to update or add |
Update the passthru object’s foo value:
{
"id": "updflowpassthru",
"name": "Update Flow Passthru",
"activity": {
"ref": "github.com/project-flogo/contrib/activity/updobject",
"input": {
"object": "=$flow.passthru",
"values": {"foo": "bar"}
}
}
}