T_countFee
Some actions, like auction price update can be charged additional fee. You should always check fee before performing any action that could be charged.
Supported arguments
The following arguments are supported by T_countFee query:
Field | Type | Description |
---|---|---|
currency | T_AvailableCurrencyType | Requested fee currency |
type | T_FeeTypeEnum! | Fee type |
Return type
The query returns theT_CountFeeResponse
type.
Example usage
Query
Query T_countFee
with preferred currency and fee type
{
T_countFee(currency: "EUR", type: AUCTION_PRICE_UPDATE) {
fee {
amount
currency
}
}
}
Result
{
"data": {
"T_countFee": {
"fee": {
"amount": 2,
"currency": "EUR"
}
}
}
}