interface SplitOutNodeParameters {
fieldsToInclude?: string;
fieldToSplitOut?: string;
include?:
| "noOtherFields"
| "allOtherFields"
| "selectedOtherFields";
options?: {
destinationFieldName?: string;
disableDotNotation?: boolean;
includeBinary?: boolean;
};
}
Properties§
§
§
§
§
readonly fields To Include?: 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.
readonly include?: "noOtherFields" | "allOtherFields" | "selectedOtherFields"
Whether to copy any other fields into the new items Default: "noOtherFields"
readonly options?: { ... }
Default: {}
Fields in the input items to aggregate together