Skip to main content

MultipleHolders

Implemented by NFTs that can have multiple owners simultaneously (ERC-1155 style). Each holder can own a different quantity of the same token ID.

Schema Definition

interface MultipleHolders {
holdersCount: Int!
holders(
first: Int = 10
after: Cursor
where: NFTHolderFilter
orderBy: NFTHolderOrderBy
orderDirection: OrderDirection
): NFTHolderList!
}

Fields

FieldTypeDescription
holdersCount
Int! non-null scalar
Number of unique addresses currently holding this NFT.
holders
NFTHolderList! non-null object
Paginated list of addresses holding this NFT and their balances.

holders Arguments

ArgumentTypeDescription
first
Int scalar
Maximum number of results to return (default: 10, max: 100).
after
Cursor scalar
Cursor for pagination. Pass the endCursor from a previous query to get the next page.
whereFilter criteria for NFT holders.
orderByField to sort results by.
orderDirectionSort direction (ascending or descending).

Implemented By

MultiHolderNFT object