-
Notifications
You must be signed in to change notification settings - Fork 76
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
support for paginated endpoints #9
Comments
Adding a bunch of my own notes on this.
The net result is that a lot of this is factored to be first-class already, though it maybe isn't quite there. On my TODO list around this includes:
|
See #14. By the way, I read the Google example too quickly -- they only encrypt when there's sensitive information in the token. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should have first-class support for paginated endpoints, i.e. endpoints that enumerate lists of items and return a page at a time of content. We want to make it easy for developers to write these paginated endpoints without too much additional boiler plate.
In addition, it would be nice to have a generic manifestation of these paginated endpoints in the openapi doc. While OpenAPI doesn't have first-class support for pagination, we can potentially provide hints in the extensions (e.g.
x-dropshot-paginated
) that we could use in reference doc generation as well as client library code gen (both would require modifications to existing tools).The text was updated successfully, but these errors were encountered: