interface MergeV1NodeParameters {
join?: "left" | "inner" | "outer";
mode?:
| "append"
| "keepKeyMatches"
| "mergeByIndex"
| "mergeByKey"
| "multiplex"
| "passThrough"
| "removeKeyMatches"
| "wait";
output?: "input1"
| "input2";
overwrite?: "undefined" | "always" | "blank";
propertyName1?: string;
propertyName2?: string;
}
Properties§
Source§readonly mode?:
| "append"
| "keepKeyMatches"
| "mergeByIndex"
| "mergeByKey"
| "multiplex"
| "passThrough"
| "removeKeyMatches"
| "wait"
readonly mode?:
| "append"
| "keepKeyMatches"
| "mergeByIndex"
| "mergeByKey"
| "multiplex"
| "passThrough"
| "removeKeyMatches"
| "wait"
How data of branches should be merged Default: "append"
Source§readonly output?: "input1" | "input2"
readonly output?: "input1" | "input2"
Defines of which input the data should be used as output of node Default: "input1"
Source§readonly overwrite?: "undefined" | "always" | "blank"
readonly overwrite?: "undefined" | "always" | "blank"
Select when to overwrite the values from Input1 with values from Input 2 Default: "always"
How many items the output will contain if inputs contain different amount of items Default: "left"