Mint your first Item
Last updated
Last updated
The addItem
mutation mints a new Item on the contract specified by contractId
. Since we are using your testnet contract, the Item will be minted on the Polygon Mumbai network.
Navigate to the addItem mutation and click on the Body tab.
In the GRAPHQL VARIABLES section, set the values for contractId
, batchId
, and metadata
.
contractId: Use the testnet contract ID that you copied in the previous section.
batchId: Any string value.
metadata: A stringified JSON object.
Keep metadataId: null
as is. See the example below.
Click the Send button. The response section should populate shortly after.
If addItem.body.status
is "dispatched to forge"
, that means that your request to mint an Item has been received and should be processed soon.
From the response, copy the itemId
. We will use this in the next section.
To check on the status of the Item, navigate to the getItem query, then click the Body tab. Update the itemId
in the GRAPHQL VARIABLES section with the itemId you copied in addItem.
If your Item has been minted, getItem.body.status
should have the value "succeeded"
.
You successfully minted an Item. Great job!