PaginatedList
Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination.
Schema Definition
interface PaginatedList {
totalCount: Int!
pageInfo: PageInfo!
}
Fields
| Field | Type | Description |
|---|---|---|
totalCount | Total number of items matching the query across all pages. | |
pageInfo | Pagination metadata for navigating through results. |
Implemented By
AddressList object ● BlockList object ● BlockTransactionList object ● ContractList object ● NFTBalanceList object ● NFTContractHolderList object ● NFTContractList object ● NFTHolderList object ● NFTList object ● OwnedNFTList object ● TokenBalanceList object ● TokenHolderList object ● TokenList object ● TransactionList object