Skip to main content

OwnedNFTList

Paginated list of NFTs owned by an address.

Schema Definition

type OwnedNFTList implements PaginatedList {
entries: [OwnedNFT!]!
totalCount: Int!
pageInfo: PageInfo!
}

Fields

FieldTypeDescription
entries
[OwnedNFT!]! non-null object
List of owned NFTs in this page.
totalCount
Int! non-null scalar
Total number of owned NFTs 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.

Member Of

NFTContractHolder object