TransactionList
The TransactionList object represents a paginated collection of Transaction objects representing individual transactions.
Schema Definition
type TransactionList {
numEntries: UInt64!
cursor: UInt64
entries: [Transaction!]!
stats: TransactionStats
}
Fields
| Field | Type | Description |
|---|---|---|
numEntries | UInt64! non-null scalar | The total number of transaction entries matching the query criteria in the current page. |
cursor | UInt64 scalar | An optional pagination cursor pointing to the next page of results. Use this value with skip in subsequent queries to fetch the next page. |
entries | [Transaction!]! non-null object | An array of Transaction objects representing individual transactions. |
stats | TransactionStats object | An object representing aggregate statistics for the transactions in the list. |
Returned By
transactions query