Interface SummarizeNodeParameters

Source
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 fieldsToSplitBy?: string

The name of the input fields that you want to split the summary by

Source§

readonly fieldsToSummarize?: {
    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}

Source§

readonly options?: {
    continueIfFieldNotFound?: boolean;
    disableDotNotation?: boolean;
    outputFormat?: "separateItems" | "singleItem";
    skipEmptySplitFields?: boolean;
}

Default: {}