Interface ColumnarWorkflowAggregationExperimental

interface ColumnarWorkflowAggregation {
    field?: string;
    name: string;
    operation:
        | "count"
        | "min"
        | "max"
        | "sum"
        | "avg";
}

Properties

Properties

field?: string
name: string
operation:
    | "count"
    | "min"
    | "max"
    | "sum"
    | "avg"