-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add pagination on nested queries #26
Comments
I guess we need to query the result inside the data loader with UNION? SELECT ... FROM animals WHERE id = ? LIMIT ?
UNION
SELECT ... FROM animals WHERE id = ? LIMIT ?
UNION
SELECT ... FROM animals WHERE id = ? LIMIT ? |
It would be very nice to have a way not to miss anything during pagination if you have new objects inserted in the meantime, using |
Nevermind, saw #19 |
This have been implemented, also its included in the new API #114 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Allow API to generate pagination for nested queries
The text was updated successfully, but these errors were encountered: