TokenList
The TokenList object represents a paginated collection of Token objects representing individual tokens.
Schema Definition
type TokenList {
numEntries: UInt64!
cursor: UInt64
entries: [Token!]!
}
Fields
| Field | Type | Description |
|---|---|---|
numEntries | UInt64! non-null scalar | The total number of token 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 | [Token!]! non-null object | An array of Token objects representing an individual token. |
Returned By
tokens query