Skip to main content

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

FieldTypeDescription
numEntriesUInt64! non-null scalarThe total number of transaction entries matching the query criteria in the current page.
cursorUInt64 scalarAn 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 objectAn array of Transaction objects representing individual transactions.
statsTransactionStats objectAn object representing aggregate statistics for the transactions in the list.

Returned By

transactions query