nftToken

This query loads the information about the NFT Token.

General Pattern

query{
	nftToken(id: "UUID1"){
  	field_1
    field_2 {
       nested_field_1
       ...
    }
  }
}

Sample Query

query{
  nftToken(id: "0c98bae0-eae3-4b23-a4eb-a138cdc58beb"){
    id
    name
    metadataArweaveTxId
    metadataArweaveTxLink
    onChainId
    ethereumTxId
    deployed
    royaltyBasisPoints
    assetId
    asset{
      id
      versions{
        id
        slug
        assetID
        name
        description
        isCurrent
        cdnUrl
        arweaveTx
      }
      currentVersion{
        id
        slug
        assetID
        name
        description
        isCurrent
        cdnUrl
        arweaveTx
      }
    }
  }
}

Sample Response

{
  "data": {
    "nftToken": {
      "id": "0c98bae0-eae3-4b23-a4eb-a138cdc58beb",
      "name": null,
      "metadataArweaveTxId": null,
      "metadataArweaveTxLink": null,
      "onChainId": null,
      "ethereumTxId": null,
      "deployed": false,
      "royaltyBasisPoints": null,
      "assetId": null,
      "asset": null
    }
  }
}

Arguments

Name

Type

Description

Required

id

UUID1

The NFT Token ID.

Yes

Fields

Name

Type

Description

NFTToken

Object

Contains all the information from NFTToken that includes ID, name, metadataArweaveTxId, metadataArweaveTxLink, etc.

Example

Load the nftToken data with basic information: