Skip to main content
Maps a value based on the supplied operator. When the incoming value is a list, this combines the items into a single result using the operator you choose, such as adding numbers together, multiplying them, finding the largest, or joining text. The items in the list become the inputs to the operator, in order. If the incoming value is not a list, it is passed through unchanged.

Fields

Sample data

FieldValue
OperatorMath: Add
The list of quantities is added together into a single total: Input:
{ "quantities": [3, 5, 2] }
Output:
{ "quantities": 10 }