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
| Field | Type | Description |
|---|---|---|
holdersCount | Number of unique addresses currently holding this NFT. | |
holders | Paginated list of addresses holding this NFT and their balances. |
holders Arguments
| Argument | Type | Description |
|---|---|---|
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. |
where | NFTHolderFilter input | Filter criteria for NFT holders. |
orderBy | NFTHolderOrderBy enum | Field to sort results by. |
orderDirection | OrderDirection enum | Sort direction (ascending or descending). |
Implemented By
MultiHolderNFT object