Skip to main content

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

FieldTypeDescription
numEntriesUInt64! non-null scalarThe total number of block 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[Block!]! non-null objectAn array of Block objects representing individual blockchain blocks.

Returned By

blocks query