Lime Web Components API Documentation - v7.2.0
    Preparing search index...

    Type Alias AggregateColumn

    AggregateColumn:
        | { op: "COUNT" }
        | { key: string; op: Exclude<AggregateOperator, "COUNT"> }

    A single aggregate column within an AggregateGroup. The op determines which aggregate is computed for the column, and key is the property the operation is applied to.

    Every operation operates on a property and therefore requires a key, except COUNT, which counts rows and takes none. A GROUP column groups the result by key, producing one response row per distinct value.