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§

§readonly exceptWhenMix?: string
§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.

§readonly mergeByFields?: { ... }

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

§readonly options?: { ... }

Default: {}

§readonly preferWhenMix?: "input1" | "input2"

Default: "input1"

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

Default: "preferInput2"