My back-end API supports cursor based pagination for the GET_LIST operations.
API: {apiUrl}/{resource}?fltr={limit:100}
Response:
{
data: [],
next: {reference_url_to_the_next_paginated_data_set}
}
What is the best way to supported this sort of pagination with the existing AOR pagination infrastructure ?