Skip to main content

Pagination Object

Description

Pagination metadata providing information about the current page, total count, and available pages.

Declaration

type Pagination {
limit: Int
count: Int
page: Int!
pages: Int!
hasMore: Boolean
}

Fields

NameTypeDescription
limitIntNumber of items per page in the current result set.
countIntTotal number of items across all pages.
pageInt!Current page number (1-based).
pagesInt!Total number of pages available.
hasMoreBooleanWhether there are more pages available beyond the current page.