You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create a pagination, it doesn't take into account any .limit() or .skip() that has already been done to the QuerySet being inputted. For example, if I do articles.objects().limit(3), paginating t for 10 items per page would remove the limit of max 3 articles.
I would consider this a bug as it makes it impossible to modify the query size in several steps.
The text was updated successfully, but these errors were encountered:
@ripperdoc it is strange to ask to check this with master, after 5 years issue. But who knows :)
I just merged #422 it is on connected topic, and maybe fix your issue too.
I do not have a chance to make a dedicated test for it, yet. As I am very limited in time, and want to bring a little life to this repo.
When you create a pagination, it doesn't take into account any .limit() or .skip() that has already been done to the QuerySet being inputted. For example, if I do articles.objects().limit(3), paginating t for 10 items per page would remove the limit of max 3 articles.
I would consider this a bug as it makes it impossible to modify the query size in several steps.
The text was updated successfully, but these errors were encountered: