BalanceList
The BalanceList object represents a paginated collection of Balance objects representing token and NFT balances for a specific account or contract address.
Schema Definition
type BalanceList {
numEntries: UInt64!
cursor: UInt64
entries: [Balance!]!
}
Fields
| Field | Type | Description |
|---|---|---|
numEntries | UInt64! non-null scalar | The total number of balance 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 | [Balance!]! non-null object | An array of Balance objects representing individual token/NFT holdings. |
Returned By
balances query