You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Guidelines.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -954,8 +954,9 @@ Client-driven paging enables clients to request only the number of resources tha
954
954
955
955
Sorting and Filtering parameters MUST be consistent across pages, because both client- and server-side paging is fully compatible with both filtering and sorting.
956
956
957
-
#### 9.8.1. Server-driven paging
958
-
Paginated responses MUST indicate a partial result by including a continuation token in the response.
957
+
#### 9.8.1. Continuation tokens
958
+
959
+
Paginated responses MUST indicate a partial result by including a continuation token in the response using the OData control information `@nextLink`.
959
960
The absence of a continuation token means that no additional pages are available.
960
961
961
962
Clients MUST treat the continuation URL as opaque, which means that query options may not be changed while iterating over a set of partial results.
The `@nextLink` MAY be populated using either server-driven paging or client-driven paging (`@nextLink`s generated using client-driven paging should not include the `$top` query parameter).
981
+
982
+
#### 9.8.2. Server-driven paging
983
+
984
+
The server MAY provide
985
+
986
+
#### 9.8.3. Client-driven paging
980
987
Clients MAY use _$top_ and _$skip_ query parameters to specify a number of results to return and an offset into the collection.
981
988
982
989
The server SHOULD honor the values specified by the client; however, clients MUST be prepared to handle responses that contain a different page size or contain a continuation token.
0 commit comments