TransactionList
Paginated list of transactions with optional aggregate statistics.
Schema Definition
type TransactionList implements PaginatedList {
entries: [Transaction!]!
totalCount: Int!
pageInfo: PageInfo!
stats: TransactionStats
}
Fields
| Field | Type | Description |
|---|---|---|
entries | List of transactions in this page. | |
totalCount | Total number of transactions matching the query across all pages. | |
pageInfo | Pagination metadata for navigating through results. | |
stats | TransactionStats object | Aggregate statistics for the transactions matching the query. |
Interfaces
| Interface | Description |
|---|---|
PaginatedList interface | Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination. |
Returned By
transactions query
Member Of
Address interface ● Contract object ● EOA object ● IContract interface ● NFTContract object ● Token object