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
{{ message }}
This repository was archived by the owner on Jul 16, 2021. It is now read-only.
Please consider to support a cursor based pagination.
We can introduce a new method for cursor based pagination.
The signature of the cursor based pagination would be
publicfunction paginateAfter
(
$cursor, // the value of cursor. for example `212`$cursorColumn, // the column name of cursor. for example `id`$perPage = null,
$columns = ['*'],
$pageName = 'page',
$page = null
)
What do you think?
If this is OK to have I'll send a PR for this.