Skip to main content

AddressList

Paginated list of addresses.

Schema Definition

type AddressList implements PaginatedList {
entries: [Address!]!
totalCount: Int!
pageInfo: PageInfo!
}

Fields

FieldTypeDescription
entries
[Address!]! non-null interface
List of addresses in this page. May include EOA or any contract type.
totalCount
Int! non-null scalar
Total number of addresses matching the query across all pages.
pageInfo
PageInfo! non-null object
Pagination metadata for navigating through results.

Interfaces

InterfaceDescription
PaginatedList interface
Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination.

Returned By

addresses query