Modules: paginationType

Contains constants for different data pagination types for collections.

Source:

Members


<static, constant> PAGINATION_NONE :string

No pagination. This means that the entire collection is retrieved in a single API call

Type:
  • string
Source:

<static, constant> PAGINATION_OFFSET :string

Offset-based pagination. Entities in this collection are loaded in chunks from the api by using the offset and limit parameters

Type:
  • string
Source:

<static, constant> PAGINATION_PARTITION :string

The collection is a partition of the total collection. This is used when making api requests using cursor-based pagination. Unlike PAGINATION_OFFSET this pagination does not contain an offset, because the offset of the data is unknown.

Type:
  • string
Source: