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 : ![Screen_Shot_2020-07-06_at_6.42.40_PM](/uploads/630cb962f2008a88e68080fc3a9a5311/Screen_Shot_2020-07-06_at_6.42.40_PM.png) 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: ![Screen_Shot_2020-07-06_at_6.42.40_PM](/uploads/11ceb27766aa39076062818037eaf11a/Screen_Shot_2020-07-06_at_6.42.40_PM.png) 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