Interface SplitOutNodeParameters

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

Properties§

§readonly fieldsToInclude?: string

Fields in the input items to aggregate together

§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.

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

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

§readonly options?: { ... }

Default: {}