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 merge By Fields?: { values: { field1?: string; field2?: string }[] }
readonly merge By Fields?: { values: { field1?: string; field2?: string }[] }
Default: {"values":[{"field1":"","field2":""}]} Type options: {"multipleValues":true}
Whether to tolerate small type differences when comparing fields. E.g. the number 3 and the string '3' are treated as the same.