Parameter |
Type |
Description |
$top |
Integer |
Returns the first n records in a collection or if the collection has a filter, the first n records matching the filter. |
$count |
Boolean |
Returns the number of records in a collection or if the collection has a filter, the number of records matching the filter. This value is returned in the @odata.count attribute of the response. |
$skip |
Integer |
Ignores the first n records in a collection or if the collection has a filter, the first n records matching the filter. |
$select |
String |
Comma-separated list of properties that specifies a subset of properties to include in the response. |
$expand |
String |
Comma-separated list of navigation properties to include in the response. |
$filter |
String |
Specifies an expression that is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. |
$orderby |
String |
Comma-separated list of properties and orders (asc/desc), that define the order in which resources are returned. |
$apply |
String |
Allows to specify a sequence of transformations to the entity set, such as groupby, filter and aggregate. |