How to achieve pagination with the API offset parameter
I am trying to achieve the pagination of large comments while retrieving the data with API v2. I tried using the offset parameter, but it doesn't work at all
My first request is :
https://www.minds.com/api/v2/comments/1125488447281643520?limit=10
which gives me a Json response :

I issued another request trying to use the offset . My request being :
https://www.minds.com/api/v2/comments/1125488447281643520?offset=10&limit=10
again giving me the same response:

The contents of the comments array on both of the cases are identical, and the offset is not being applied at all . How can I apply offset properly?. Any help would be greatly appreciated. Thanks
issue