Interface RemoveDuplicatesV1NodeParameters

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

Properties§

Source§

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

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

Source§

readonly fieldsToCompare?: string

Fields in the input to add to the comparison

Source§

readonly fieldsToExclude?: string

Fields in the input to exclude from the comparison

Source§

readonly options?: {
    disableDotNotation?: boolean;
    removeOtherFields?: boolean;
}

Default: {}