interface AggregateNodeParameters {
aggregate?:
| "aggregateIndividualFields"
| "aggregateAllItemData";
destinationFieldName?: string;
fieldsToAggregate?: {
fieldToAggregate: {
fieldToAggregate?: string;
outputFieldName?: string;
renameField?: boolean;
}[];
};
fieldsToExclude?: string;
fieldsToInclude?: string;
include?: | "allFields"
| "specifiedFields"
| "allFieldsExcept";
options?: {
disableDotNotation?: boolean;
includeBinaries?: boolean;
keepMissing?: boolean;
keepOnlyUnique?: boolean;
mergeLists?: boolean;
};
}
Properties§
Source§readonly destination Field Name?: string
readonly destination Field Name?: string
The name of the output field to put the data in Default: "data"
Default: "aggregateIndividualFields"