Interface: ODataQueryResult<T>
Defined in: packages/core/src/query/odata-query.types.ts:63
Result of executing a translated OData query. Used by IQueryTranslator.execute() to return structured data to the controller.
select is included so the controller can build the correct @odata.context URL.
Type Parameters
T
T = unknown
Properties
applyProperties?
readonlyoptionalapplyProperties?:string[]
Defined in: packages/core/src/query/odata-query.types.ts:71
Property names present in aggregation output (for context URL construction)
count?
readonlyoptionalcount?:number
Defined in: packages/core/src/query/odata-query.types.ts:65
isAggregated?
readonlyoptionalisAggregated?:boolean
Defined in: packages/core/src/query/odata-query.types.ts:69
True when the result was produced by a $apply aggregation pipeline
items
readonlyitems:T[]
Defined in: packages/core/src/query/odata-query.types.ts:64
nextLink?
readonlyoptionalnextLink?:string
Defined in: packages/core/src/query/odata-query.types.ts:66
select?
readonlyoptionalselect?:SelectNode
Defined in: packages/core/src/query/odata-query.types.ts:67