Skip to main content
Executes a list of mappers in sequence. Use this when a single value needs more than one transformation, one after another. The transformations run in the order you add them, and each one works on the result of the one before it. This lets you build a small pipeline in a single step, for example trim the spaces from a product name, then convert it to uppercase.

Fields

Sample data

FieldValue
MappersTrim, then Uppercase
Input:
{ "name": "  wool scarf  " }
Output:
{ "name": "WOOL SCARF" }