Viewing Assets
Learn how to view assets from your project with the GetAssets query.
With the
GetAsset
query, you can get information regarding assets linked to your project/collection.This query allows you to retrieve specific information from assets linked to your project.
query {
GetAsset(id: "<token id here>") {
id
name
createdAt
updatedAt
wallet {
ethAddress
}
}
}
The expected output of this query should look like this.
{
"data": {
"GetAsset": {
"id": "708000000000088e",
"name": "Tassio Test 2",
"createdAt": "2021-06-16T21:18:59+00:00",
"updatedAt": "2021-06-16T21:39:39+00:00",
"wallet": {
"ethAddress": "0x7AEAB7C231c88611a2ad434d3A2715Ab3C91F406"
}
}
}
}
Last modified 10mo ago