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:

FieldTypeDescription
currencyT_AvailableCurrencyTypeRequested fee currency
typeT_FeeTypeEnum!Fee type

Return type

The query returns the T_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"
      }
    }
  }
}
Copyright 2024 Eneba. All Rights Reserved. JSC “Helis play”, Gyneju St. 4-333, Vilnius, the Republic of Lithuania