Django - DRF Advanced Features
Given this code snippet using CursorPagination, what will be the value of the next cursor if the current cursor is 'abc123' and page size is 2?
class MyCursorPagination(CursorPagination):
page_size = 2
paginator = MyCursorPagination()
next_cursor = paginator.get_next_link()
