API Platform: Pagination reference
14 June 2022 (Updated 14 June 2022)
On this page
In a nutshell
API Platform provides out-of-the-box support for paged collections. By default, collections will be limited to 30 per page but this per page limit and other behavior can be configured.
When the number of items in a collection endpoint exceeds the per page limit (30 by default), a Hydra collection will be returned that looks something like this:
Configuration
See current configuration
Configure name of the page param (globally)
Configure number of items per page (globally)
Configure number of items per page (for resource)
Disable pagination globally
Disable pagination for a specific resource
Allow client to enable or disable the pagination (globally)
The pagination can now be enabled or disabled on the client-side by adding a pagination
query parameter:
GET /books?pagination=false
: disabledGET /books?pagination=true
: enabled
Allow client to enable or disable the pagination for a specific resource
Sources
Tagged:
API Platform
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment