ODataConfig
Configuration object for api requests.
Properties
expands?
optionalexpands:string[]
Add expanded properties to include related resources in the response
Supports both direct (first-level) relationships and nested relationships.
Example
expands: ["person", "job", "comments", "report/reportChartSeriesList"]
filters?
optionalfilters:BaseODataFilter<unknown>[]
BaseODataFilter data filters
orderBys?
optionalorderBys:ODataOrderBy[]
ODataOrderBy Properties that data can be ordered by
selects?
optionalselects:string[]
Limit selected properties to return only specific fields
Can specify properties of the root object or properties of related resources using the format "relationName/propertyName". Only supports properties directly available on the root object or its first-level relationships.
Example
select: ["id", "name", "person/id", "person/name"]
skip?
optionalskip:number
Number of records to skip
top?
optionaltop:number
Number of records to return