Skip to main content

NFTList

Paginated list of individual NFTs.

Schema Definition

type NFTList implements PaginatedList {
entries: [NFT!]!
totalCount: Int!
pageInfo: PageInfo!
}

Fields

FieldTypeDescription
entries
[NFT!]! non-null interface
List of NFTs in this page. May include SingleHolderNFT or MultiHolderNFT types.
totalCount
Int! non-null scalar
Total number of 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.

Returned By

nfts query

Member Of

NFTContract object