June 13, 2024
0.10.1
(feat):
Add support for cursor and offset pagination.
What’s new
- Add support for cursor and offset pagination.
For example, consider the following endpoint /users
endpoint:
The generated SyncPagingIterable<User>
can then be used to traverse through the User
objects:
Or stream them:
Or statically calling nextPage()
to perform the pagination manually: