interface RemoveDuplicatesV2NodeParameters {
compare?:
| "allFields"
| "allFieldsExcept"
| "selectedFields";
dateDedupeValue?: string;
dedupeValue?: string;
fieldsToCompare?: string;
fieldsToExclude?: string;
incrementalDedupeValue?: number;
logic?: | "removeItemsWithAlreadySeenKeyValues"
| "removeItemsUpToStoredIncrementalKey"
| "removeItemsUpToStoredDate";
mode?: "cleanDatabase";
operation?: | "removeDuplicateInputItems"
| "removeItemsSeenInPreviousExecutions"
| "clearDeduplicationHistory";
options?: {
disableDotNotation?: boolean;
historySize?: number;
removeOtherFields?: boolean;
scope?: "workflow"
| "node";
};
}
Properties§
Source§readonly dedupe Value?: string
readonly dedupe Value?: string
Use an input field (or a combination of fields) that has a unique ID value
Source§readonly incremental Dedupe Value?: number
readonly incremental Dedupe Value?: number
Use an input field (or a combination of fields) that has an incremental value
Source§readonly logic?:
| "removeItemsWithAlreadySeenKeyValues"
| "removeItemsUpToStoredIncrementalKey"
| "removeItemsUpToStoredDate"
readonly logic?:
| "removeItemsWithAlreadySeenKeyValues"
| "removeItemsUpToStoredIncrementalKey"
| "removeItemsUpToStoredDate"
How to select input items to remove by comparing them with key values previously processed Default: "removeItemsWithAlreadySeenKeyValues"
Source§readonly mode?: "cleanDatabase"
readonly mode?: "cleanDatabase"
How you want to modify the key values stored on the database. None of these modes removes input items. Default: "cleanDatabase"
The fields of the input items to compare to see if they are the same Default: "allFields"