-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No have paginate in session.query #22
Comments
Example how i use
|
@miki725, there's no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use a method to paginate my queries but in the library I don't have this implementation whenever I use
session.query(Model).paginate(page=1, per_page=10, max_per_page=100)
returns an empty list. If this method is implemented I do not know how it should be applied!In sqlalchemy we have here how the implementation is usually done in the library https://flask-sqlalchemy.palletsprojects.com/en/2.x/api/#flask_sqlalchemy.Pagination
The text was updated successfully, but these errors were encountered: