Interface HonuaOdataAggregateResult

Single page of an OData $apply aggregation response.

interface HonuaOdataAggregateResult {
    rows: readonly Record<string, unknown>[];
    totalCount?: number;
}

Properties

Properties

rows: readonly Record<string, unknown>[]
totalCount?: number