Cursor Based Paging Object
The cursor-based paging object is a container for a set of objects. It contains a key called items (whose value is an array of the requested objects) along with other keys like next and cursors that can be useful in future calls.
Parameters
A link to the Web API endpoint returning the full result of the request.
The requested data.
The maximum number of items in the response (as set in the query or by default).
URL to the next page of items. ( null if none)
The maximum number of items available to return.
The cursors used to find the next set of items. If items is empty, cursor may be null.
Constructors
Functions
Flow the Paging action.
Flow from current page backwards.
Flow from current page forwards.
Flow the paging action ordered. This can be less performant than flow if you are in the middle of the pages.
Flow the paging objects.
Flow the paging objects ordered. This can be less performant than flowPagingObjects if you are in the middle of the pages.
Get all items of type T associated with the request
Get all items of type T associated with the request. Filters out null objects.
Get all items of type T associated with the request. Filters out null objects.
Retrieve all T associated with this rest action
Retrieve all PagingObjectBase associated with this rest action
Retrieve all PagingObjectBase associated with this rest action
Synchronously retrieve the next total paging objects associated with this CursorBasedPagingObject, including this CursorBasedPagingObject.
Retrieve the items associated with the next total paging objects associated with this rest action, including the current one.
Retrieve the items associated with the next total paging objects associated with this rest action, including the current one.
Synchronously retrieve the next total paging objects associated with this PagingObjectBase, including this PagingObjectBase.
Synchronously retrieve the next total paging objects associated with this PagingObjectBase, including this PagingObjectBase.