Interface RemoveDuplicatesV1NodeParameters

Source
interface RemoveDuplicatesV1NodeParameters {
    compare?:
        | "allFields"
        | "allFieldsExcept"
        | "selectedFields";
    fieldsToCompare?: string;
    fieldsToExclude?: string;
    options?: {
        disableDotNotation?: boolean;
        removeOtherFields?: boolean;
    };
}

Properties§

§readonly compare?: "allFields" | "allFieldsExcept" | "selectedFields"

The fields of the input items to compare to see if they are the same Default: "allFields"

§readonly fieldsToCompare?: string

Fields in the input to add to the comparison

§readonly fieldsToExclude?: string

Fields in the input to exclude from the comparison

§readonly options?: { ... }

Default: {}