PaginationInfo
Pagination cursor returned with every paginated query response. Use
hasNextPage / hasPreviousPage to decide whether to issue another query
with an incremented page value.
type PaginationInfo {
currentPage: Int!
pageSize: Int!
totalItems: Int!
totalPages: Int!
hasNextPage: Boolean!
hasPreviousPage: Boolean!
}
Fields
PaginationInfo.currentPage ● Int! non-null scalar common-objects
The page number returned in this response.
PaginationInfo.pageSize ● Int! non-null scalar common-objects
The page size used for this response.
PaginationInfo.totalItems ● Int! non-null scalar common-objects
Total number of items across all pages.
PaginationInfo.totalPages ● Int! non-null scalar common-objects
Total number of pages available at this page size.
PaginationInfo.hasNextPage ● Boolean! non-null scalar common-objects
True if there is at least one more page after this one.
PaginationInfo.hasPreviousPage ● Boolean! non-null scalar common-objects
True if there is at least one page before this one.
Member Of
IncrementalForecastingSummaryResponse object ● MarketingAggregateResponse object ● MarketingRecordsResponse object