Interface SplitOutNodeParameters

Source
interface SplitOutNodeParameters {
    fieldsToInclude?: string;
    fieldToSplitOut?: string;
    include?:
        | "noOtherFields"
        | "allOtherFields"
        | "selectedOtherFields";
    options?: {
        destinationFieldName?: string;
        disableDotNotation?: boolean;
        includeBinary?: boolean;
    };
}

Properties§

Source§

readonly fieldsToInclude?: string

Fields in the input items to aggregate together

Source§

readonly fieldToSplitOut?: string

The name of the input fields to break out into separate items. Separate multiple field names by commas. For binary data, use $binary.

Source§

readonly include?: "noOtherFields" | "allOtherFields" | "selectedOtherFields"

Whether to copy any other fields into the new items Default: "noOtherFields"

Source§

readonly options?: {
    destinationFieldName?: string;
    disableDotNotation?: boolean;
    includeBinary?: boolean;
}

Default: {}