Traqula
    Preparing search index...

    Open interface describing an expression

    interface AggregateExpression {
        aggregator:
            | "max"
            | "sample"
            | "min"
            | "sum"
            | "count"
            | "avg"
            | "group_concat";
        distinct: boolean;
        expression: Algebra.Expression;
        separator?: string;
        subType: AGGREGATE;
        type: EXPRESSION;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aggregator: "max" | "sample" | "min" | "sum" | "count" | "avg" | "group_concat"
    distinct: boolean
    expression: Algebra.Expression
    separator?: string
    subType: AGGREGATE