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 except When Mix?: string§readonly fuzzy Compare?: boolean§
readonly merge By Fields?: { ... }Default: {"values":[{"field1":"","field2":""}]} Type options: {"multipleValues":true}
readonly options?: { ... }Default: {}
readonly prefer When Mix?: "input1" | "input2"Default: "input1"
readonly resolve?: "preferInput1" | "preferInput2" | "mix" | "includeBoth"Default: "preferInput2"
Whether to tolerate small type differences when comparing fields. E.g. the number 3 and the string '3' are treated as the same.