Updated on 2023-09-06 GMT+08:00

Splitter

The splitter processor splits the data transferred to this node based on the specified expression and transfers the split data to subsequent nodes through node variables. Generally, a splitter component is followed by a filter component.

Splitter is an asynchronous processing component. If a task contains a Splitter node, the OpenAPI will return the data transferred to the Splitter node.

Configuration Parameters

Parameter

Description

Expression

Expression for splitting data.

An expression is used to split data into data blocks for subsequent processes in parallel. For example, if the payload data is {"data":[{"id":1},{"id":2}]}, you can use ${payload.data} to split the data into {"id":1} and {"id":2}.