interface SplitOutNodeParameters {
fieldsToInclude?: string;
fieldToSplitOut?: string;
include?:
| "noOtherFields"
| "allOtherFields"
| "selectedOtherFields";
options?: {
destinationFieldName?: string;
disableDotNotation?: boolean;
includeBinary?: boolean;
};
}
Properties§
Source§readonly field To Split Out?: string
readonly field To Split Out?: string
The name of the input fields to break out into separate items. Separate multiple field names by commas. For binary data, use $binary.
Fields in the input items to aggregate together