object

PageInfo

Common Schema for pagination (cursor and number).
Fields
current
Int
Specifies the current page number. It helps in identifying the position within the paginated results.
next_id
String
Specifies the identifier for the next page of results. It is used for fetching the subsequent set of items in a paginated response.
has_previous
Boolean
The boolean field indicates whether there is a previous page available. It is true if a previous page exists and false if the current page is the first one.
has_next
Boolean
Indicates whether there is a next page available. It is true if a next page exists and false if the current page is the last one.
item_total
Int
Total number of items available across all pages. It provides a count of all the items that match the query criteria, regardless of pagination.
type
String
Specifies type of pagination. If it is 'cursor' based or 'number' based.
size
Int
Represents the number of items on the current page. It indicates how many items are included in each page of the paginated response.