Interface: ODataQueryOptions
Query options for entity set retrieval.
Example
const opts: ODataQueryOptions = {
filter: "Price gt 10",
select: "Name,Price",
top: 20,
skip: 0,
};
Extends
Properties
csrfToken?
readonlyoptionalcsrfToken?:string
CSRF token for write operations (POST/PATCH/DELETE).
Inherited from
expand?
readonlyoptionalexpand?:string
OData $expand expression (comma-separated navigation properties).
filter?
readonlyoptionalfilter?:string
OData $filter expression.
headers?
readonlyoptionalheaders?:Readonly<Record<string,string>>
Additional custom headers to include in the request.
Inherited from
orderby?
readonlyoptionalorderby?:string
OData $orderby expression.
select?
readonlyoptionalselect?:string
OData $select expression (comma-separated property names).
skip?
readonlyoptionalskip?:number
OData $skip value (number of entities to skip).
timeout?
readonlyoptionaltimeout?:number
Timeout in ms for the HTTP request.
Inherited from
top?
readonlyoptionaltop?:number
OData $top value (maximum number of entities to return).