Paginate large datasets.
# First 10 records GET /odata/demo/Customers?$top=10 # Next 10 (Skip 10) GET /odata/demo/Customers?$top=10&$skip=10 # With total count GET /odata/demo/Customers?$top=10&$count=true
For large results, the server automatically returns an @odata.nextLink:
{ "value": [...], "@odata.nextLink": "/odata/demo/Customers?$skip=100" }
$orderby=Name // Ascending $orderby=Name desc // Descending $orderby=Country,Name // Multiple columns