Remove the NFT from users favourite list.
Sample mutation
mutation removeNFTFromFavourite($orgID: UUID1!, $tokenId: UUID1!) {
removeNFTFromFavourite(orgID: $orgID, tokenId: $tokenId)
}Sample variable
{
"tokenId": "83bef811-cefb-48da-a7e7-27c553a5f7ac",
"orgID": "f2f5c627-5421-4c40-9913-edfd09dd98b3"
}Sample response
{
"data": {
"removeNFTFromFavourite": true
}
}Arguments
| Name | Type | Description | Required |
|---|---|---|---|
tokenId | UUID | NFT token Id | Yes |
orgID | UUID | The organization id | Yes |
Field
| Name | Type | Description |
|---|---|---|
removeNFTFromFavourite | Boolean | The sending value. If the NFT removed from favourite list, it will be 'true'. |
