As of now when querying and the enpoint has many result which leads to pagination the pagination handler will go thorugh all available pages and get the results.
To handle this there should be a method .limit_result(int: xx) that will stop the pagination after the result has been collected.
It might also be a good idea to provide control over the pagination with a .paginate({paginate_settings}) that will just return the first page but if you call the .next() it will return the next page and so on.
As of now when querying and the enpoint has many result which leads to pagination the pagination handler will go thorugh all available pages and get the results.
To handle this there should be a method .limit_result(int: xx) that will stop the pagination after the result has been collected.
It might also be a good idea to provide control over the pagination with a .paginate({paginate_settings}) that will just return the first page but if you call the .next() it will return the next page and so on.