We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If a query set is sorted, we can paginate efficiently using .min(...).skip(1).limit(page_size). Not sure how to make this work generically yet.
.min(...).skip(1).limit(page_size)
The text was updated successfully, but these errors were encountered:
flask-mongoengine paginator could be used almost as it is https://github.com/MongoEngine/flask-mongoengine/blob/d3a45f863aef7c8e973eebbd838d3863c438976a/flask_mongoengine/pagination.py#L12
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If a query set is sorted, we can paginate efficiently using
.min(...).skip(1).limit(page_size)
. Not sure how to make this work generically yet.The text was updated successfully, but these errors were encountered: