Concept Flow - Pagination with limit and offset
Client sends request with limit and offset
Server receives request
Server extracts limit and offset
Server queries data: skip offset, take limit
Server sends back limited data slice
Client displays current page data
Client requests next/previous page with new offset
The client asks for a slice of data by sending limit and offset. The server uses these to return just that slice, enabling page-by-page data viewing.