UpdObject

UpdObject

This activity allows update an existing object’s values.

Installation

Flogo CLI

flogo install github.com/project-flogo/contrib/activity/updobject

Configuration

Input:

Name Type Description
object object The object to update
values object The keys/properties and values to update or add

Example

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"}
    }
  }
}