Overview
Everylist() call returns a Page<T>. The iter() method returns a Stream<T> that lazily auto-paginates across all pages.
The Page<T> Object
PageMeta fields
| Field | Type | Description |
|---|---|---|
apiVersion | String | API version string |
total | int | Total items |
page | int | Current page |
perPage | int | Items per page |
pages | int | Total pages |
Manual Pagination
Automatic Pagination with iter()
iter() returns a Stream<T> — it fetches the next page only when the current page is exhausted:
