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