Query Template
Filtering Options
Parameter | Type | Description |
---|---|---|
where | object | 특정 조건을 기준으로 결과를 필터링하는 객체. |
limit | integer | 반환할 최대 결과 수. |
offset | integer | 결과의 시작 위치를 지정. |
order_by | object | 결과를 정렬하는 기준을 지정하는 객체. 여러 필드를 기준으로 정렬할 수 있습니다. |
Query Fields
Field | Type | Description |
---|---|---|
asset_type | string | 자산 유형을 식별하는 고유한 문자열. |
name | string | 자산의 이름. |
creator_address | string | 자산 생성자의 주소. |
decimals | integer | 자산의 소수점 이하 자리 수를 나타내는 정수. |
symbol | string | 자산의 심볼. |
last_transaction_timestamp | string | 마지막 트랜잭션의 타임스탬프 (ISO 8601 형식). |
last_transaction_version | integer | 마지막 트랜잭의 버전을 나타내는 정수. |
Example
Request Example
query MyQuery {
fungible_asset_metadata(
order_by: {
last_transaction_timestamp: desc
}
where: {
asset_type: {
_in: [
"0x1::aptos_coin::AptosCoin",
"0xd50698729b7fdf58d7f0bb793e1e8da4c5b78c89882aeeaccdd71f93aaf81976::aptx_coin::AptxCoin"
]
}
}
) {
asset_type
name
creator_address
decimals
symbol
last_transaction_timestamp
last_transaction_version
}
}
Response Example
{
"data": {
"fungible_asset_metadata": [
{
"asset_type": "0xd50698729b7fdf58d7f0bb793e1e8da4c5b78c89882aeeaccdd71f93aaf81976::aptx_coin::AptxCoin",
"name": "APITEX",
"creator_address": "0xd50698729b7fdf58d7f0bb793e1e8da4c5b78c89882aeeaccdd71f93aaf81976",
"decimals": 5,
"symbol": "APTX",
"last_transaction_timestamp": "2024-06-25T14:33:56",
"last_transaction_version": 999372383
},
{
"asset_type": "0x1::aptos_coin::AptosCoin",
"name": "Aptos Coin",
"creator_address": "0x0000000000000000000000000000000000000000000000000000000000000001",
"decimals": 8,
"symbol": "APT",
"last_transaction_timestamp": "1970-01-01T00:00:00",
"last_transaction_version": 0
}
]
}
}