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§
§§§§§
readonly join?: "left" | "inner" | "outer"§
readonly mode?:
| "append"
| "keepKeyMatches"
| "mergeByIndex"
| "mergeByKey"
| "multiplex"
| "passThrough"
| "removeKeyMatches"
| "wait"How data of branches should be merged Default: "append"
readonly output?: "input1" | "input2"Defines of which input the data should be used as output of node Default: "input1"
readonly overwrite?: "undefined" | "always" | "blank"Select when to overwrite the values from Input1 with values from Input 2 Default: "always"
readonly property Name 1?: stringName of property which decides which items to merge of input 1
readonly property Name 2?: stringName of property which decides which items to merge of input 2
How many items the output will contain if inputs contain different amount of items Default: "left"