Pagination
Offset pagination, handled for you.
Four endpoints return paginated collections:
All four use offset pagination: limit sets the page size, offset counts items
skipped (not pages). Responses carry items, total, limit, and offset.
Let the SDK do it
Both SDKs return an iterator that fetches subsequent pages as you consume it, so the common case needs no pagination code at all:
Page at a time
When you’re rendering a paged UI, step explicitly:
Raw offsets
You can always drive it yourself:
Offset pagination isn’t stable under concurrent writes — if pages are created while you
iterate, you can see an item twice or skip one. For sync jobs, prefer the
change feed with since, which doesn’t have this problem.