NFT Collections
Step 1: CollectionEntity query preparation
`collectionId`: The collection id.- String
`owner`: The collection owner; null if the collection is burned. - String | null
`offchainData`: The collection off-chain data (e.g. IPFS CID hash, a link, or any string). - String
`nfts`: An array of the NFT ids in the collection - String[]
`nbNfts`: The number of NFT in the collection. - Number
`limit`: The collection limit if set; null otherwise. - Number | null
`hasReachedLimit`: true if the Collection has reached its limit; false otherwise. - Boolean
`isClosed`: - Boolean flag: true if the Collection is closed; false otherwise. - Boolean
`timestampCreated`: The creation timestamp. - Date
`timestampBurned`: The burning timestamp. - Date | null
`timestampClosed`: The closing timestamp.- Date | null
`timestampLimited`: The limit setting timestamp. - Date | null{
collectionEntity(id: "_COLLECTION_ID_") {
owner
collectionId
offchainData
}
}Step 2: Sending the request to the Indexer
How to retrieve the last Collection minted using Ternoa Indexer
How to retrieve a limited collection using the Ternoa Indexer
How to retrieve a closed collection using Ternoa Indexer
How to retrieve a burned collection using Ternoa Indexer
Support
Last updated