Available queries

Associated queryReturns multiple results
TotalTaxes✔️

Available fields

LabelTypeNotesNull
amountdecimal(12,4)The total tax amount
idintegerThe total tax id
taxTaxThe tax used

Example of a query

query{
  TotalTaxes{
    edges{
      node{
        amount
        id
        tax{
          id
        }
      }
    }
  }
}