File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -785,12 +785,22 @@ The `paged` `paginator` returns results based on pages of a fixed size. Valid `p
785785If ` number ` is omitted the first page is returned. If ` size ` is omitted the ` default_page_size ` from the configuration
786786settings is used.
787787
788+ ```
789+ GET /articles?page%5Bnumber%5D=10&page%5Bsize%5D=10 HTTP/1.1
790+ Accept: application/vnd.api+json
791+ ```
792+
788793###### Offset Paginator
789794
790795The ` offset ` ` paginator ` returns results based on an offset from the beginning of the resultset. Valid ` page ` parameters
791796are ` offset ` and ` limit ` . If ` offset ` is omitted a value of 0 will be used. If ` limit ` is omitted the ` default_page_size `
792797from the configuration settings is used.
793798
799+ ```
800+ GET /articles?page%5Blimit%5D=10&page%5Boffset%5D=10 HTTP/1.1
801+ Accept: application/vnd.api+json
802+ ```
803+
794804###### Custom Paginators
795805
796806Custom ` paginators ` can be used. These should derive from ` Paginator ` . The ` apply ` method takes a ` relation ` and
You can’t perform that action at this time.
0 commit comments