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
While working on Stripe API a lot, they have implemented a type of pagination I was unaware of: cursor based pagination. The idea is that normal pagination (using limit, offset...) is unreliable because if new records are insreted while you paginate, you may miss records.
Cursor based assume that you pass the last id of the records, so that pagiantion continue just after this record.
I'm not sure if that can be implemented easily in ZfrRest but that would be a nice addition :p.
The text was updated successfully, but these errors were encountered:
While working on Stripe API a lot, they have implemented a type of pagination I was unaware of: cursor based pagination. The idea is that normal pagination (using limit, offset...) is unreliable because if new records are insreted while you paginate, you may miss records.
Cursor based assume that you pass the last id of the records, so that pagiantion continue just after this record.
I'm not sure if that can be implemented easily in ZfrRest but that would be a nice addition :p.
The text was updated successfully, but these errors were encountered: