AggQuery<S>: {
    select: {
        readonly [K in keyof S]?: Agg[]
    };
    where?: ProjectionWhere<S>;
}

Aggregate query options

  • select aggregated fields
  • where? filtered fields in projection record (should be indexed)

Type Parameters

Type declaration

  • Readonly select: {
        readonly [K in keyof S]?: Agg[]
    }
  • Optional Readonly where?: ProjectionWhere<S>

Generated using TypeDoc