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
offsetandlimitparametersType:
- 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_OFFSETthis pagination does not contain anoffset, because the offset of the data is unknown.Type:
- string
- Source: