
#152: Cursor Based Pagination with Paginator
Published September 30, 2022
6m 17s
We have our album application that lists different albums. One new feature of this app is that we now have an API for our albums, which other applications can use to access the album data. While our API works - it currently only lists all of the albums at once. One improvement we should make is to update the API in order to return paginated albums.
We’ve covered pagination in previous episodes, however …