Interface MergeV1NodeParameters

Source
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 join?: "left" | "inner" | "outer"

How many items the output will contain if inputs contain different amount of items Default: "left"

Source§

readonly mode?:
    | "append"
    | "keepKeyMatches"
    | "mergeByIndex"
    | "mergeByKey"
    | "multiplex"
    | "passThrough"
    | "removeKeyMatches"
    | "wait"

How data of branches should be merged Default: "append"

Source§

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"

Select when to overwrite the values from Input1 with values from Input 2 Default: "always"

Source§

readonly propertyName1?: string

Name of property which decides which items to merge of input 1

Source§

readonly propertyName2?: string

Name of property which decides which items to merge of input 2