Concept Flow - Offset-based pagination
Client sends request with offset & limit
Server receives offset & limit
Server queries data starting at offset
Server returns limited data slice
Client displays current page data
Client requests next page with updated offset
Repeat process
The client requests data with an offset and limit. The server returns a slice of data starting at the offset. The client uses this to show pages and requests more by changing the offset.