Transform Node
Convert input data from one format to another. Purpose of this node is to make simple structured transformations to the input data.
Parameters
expression
The transformation to be applied to the input data. It must be a single valid JavaScript expression without return keyword and the trailing semicolon. See examples below.
runMode
The Transform node can be run in 2 different modes:
- Item: The node will be run for every item in the input array. Makes `item` variable available in the expression.
- Input: The node will be run only once for the entire input. Makes `input` variable available in the expression.