Interface CompareDatasetsNodeParameters

Source
interface CompareDatasetsNodeParameters {
    exceptWhenMix?: string;
    fuzzyCompare?: boolean;
    mergeByFields?: {
        values: { field1?: string; field2?: string }[];
    };
    options?: {
        disableDotNotation?: boolean;
        fuzzyCompare?: boolean;
        multipleMatches?: "all"
        | "first";
        skipFields?: string;
    };
    preferWhenMix?: "input1"
    | "input2";
    resolve?:
        | "preferInput1"
        | "preferInput2"
        | "mix"
        | "includeBoth";
}

Properties§

Source§

readonly exceptWhenMix?: string

Source§

readonly fuzzyCompare?: boolean

Whether to tolerate small type differences when comparing fields. E.g. the number 3 and the string '3' are treated as the same.

Source§

readonly mergeByFields?: { values: { field1?: string; field2?: string }[] }

Default: {"values":[{"field1":"","field2":""}]} Type options: {"multipleValues":true}

Source§

readonly options?: {
    disableDotNotation?: boolean;
    fuzzyCompare?: boolean;
    multipleMatches?: "all" | "first";
    skipFields?: string;
}

Default: {}

Source§

readonly preferWhenMix?: "input1" | "input2"

Default: "input1"

Source§

readonly resolve?: "preferInput1" | "preferInput2" | "mix" | "includeBoth"

Default: "preferInput2"