Pagination in http functions

Hello to everyone, I was researching how to apply pagination to wix http functions. My site has some working http function and I realized it doesn’t already get all of the queryset. Moreover I need it to do pagination. There is no information related to pagination on documentation though. So does anybody have knowledge about it?

You can use the limit() and skip() query functions to page through the data. When you want the next page, just add the limit value to the skip value and in that way you can keep paging through the data.