Available queries

Associated queryReturns multiple results
ServicePrice
ServicePrices✔️

Available fields

LabelTypeNotesNull
amountdecimal(14,4)The price
currencyCurrencyThe currency used
idintegerThe id of this price

Example of a query

query{
  ServicePrices{
    edges{
      node{
        amount
        currency{
          iso
        }
        id
      }
    }
  }
}