Pagination

Cursor-based pagination is used for list endpoints:

{
  items: T[],
  bookmark: string, // Use this for the next page
  hasMore: boolean
}

Last updated