interface SummarizeNodeParameters {
fieldsToSplitBy?: string;
fieldsToSummarize?: {
values: {
aggregation?:
| "append"
| "max"
| "average"
| "concatenate"
| "count"
| "countUnique"
| "min"
| "sum";
customSeparator?: string;
field?: string;
includeEmpty?: boolean;
separateBy?: ""
| "other"
| ","
| ", "
| "\n"
| " ";
}[];
};
options?: {
continueIfFieldNotFound?: boolean;
disableDotNotation?: boolean;
outputFormat?: "separateItems"
| "singleItem";
skipEmptySplitFields?: boolean;
};
}
Properties§
Source§readonly fields To Summarize?: {
values: {
aggregation?:
| "append"
| "max"
| "average"
| "concatenate"
| "count"
| "countUnique"
| "min"
| "sum";
customSeparator?: string;
field?: string;
includeEmpty?: boolean;
separateBy?: ""
| "other"
| ","
| ", "
| "\n"
| " ";
}[];
}
readonly fields To Summarize?: {
values: {
aggregation?:
| "append"
| "max"
| "average"
| "concatenate"
| "count"
| "countUnique"
| "min"
| "sum";
customSeparator?: string;
field?: string;
includeEmpty?: boolean;
separateBy?: ""
| "other"
| ","
| ", "
| "\n"
| " ";
}[];
}
Default: {"values":[{"aggregation":"count","field":""}]} Type options: {"multipleValues":true}
The name of the input fields that you want to split the summary by