interface RemoveDuplicatesV1NodeParameters {
compare?:
| "allFields"
| "allFieldsExcept"
| "selectedFields";
fieldsToCompare?: string;
fieldsToExclude?: string;
options?: {
disableDotNotation?: boolean;
removeOtherFields?: boolean;
};
}
The fields of the input items to compare to see if they are the same Default: "allFields"