Merge Helper
Combine multiple inputs into one output.
Categories: Helpers
Type: mergeHelper/v1
Actions
Append
Name: append
Takes multiple input items and combines them into a single array by appending all entries, keeping all keys.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| inputs | Inputs | ARRAY Items[] | A collection of objects, arrays, or nested structures to be merged. | true |
Example JSON Structure
{
"label" : "Append",
"name" : "append",
"parameters" : {
"inputs" : [ ]
},
"type" : "mergeHelper/v1/append"
}Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
Combine
Name: combine
Combine data from two inputs.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| combineBy | Combine By | STRING OptionsmatchingFields, position, allPossibleCombinations | Determines how input items are combined. | true |
| fieldToMatch | Field to Match | STRING | The field to match for combining items. | true |
| input1 | Input 1 | ARRAY Items[] | The first input to combine. | true |
| input2 | Input 2 | ARRAY Items[] | The second input to combine. | true |
Example JSON Structure
{
"label" : "Combine",
"name" : "combine",
"parameters" : {
"combineBy" : "",
"fieldToMatch" : "",
"input1" : [ ],
"input2" : [ ]
},
"type" : "mergeHelper/v1/combine"
}Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
SQL Query
Name: sqlQuery
Write SQL Query to merge the data with DuckDB.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| inputs | Inputs | ARRAY Items[{STRING(tableName), {}(value)}] | A collection of objects, arrays, or nested structures to be merged. | true |
| sqlQuery | SQL Query | STRING | The SQL query to execute. | true |
Example JSON Structure
{
"label" : "SQL Query",
"name" : "sqlQuery",
"parameters" : {
"inputs" : [ {
"tableName" : "",
"value" : { }
} ],
"sqlQuery" : ""
},
"type" : "mergeHelper/v1/sqlQuery"
}Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
How is this guide?
Last updated on