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
At the moment, get requests respond with all results found. So, requests are taking very long for big amounts of data.
Make pagination enabled by default for any get requests. Suggestion:
List 30 results per page by default
Allow an optional query param called page.
Allow an optional query param called pageSize to change the default value for the number of results per page.
Include a link attribute in response header containing navigation details:
At the moment, get requests respond with all results found. So, requests are taking very long for big amounts of data.
Make pagination enabled by default for any get requests. Suggestion:
page
.pageSize
to change the default value for the number of results per page.Link: <https://api.github.com/users?page=2>; rel="next", <https://api.github.com/users?page=50>; rel="last"
The text was updated successfully, but these errors were encountered: