Jump to Content
erplain
API Reference
Log Inerplain
API Reference
Log In
v1.0API Reference
All
Pages
Start typing to search…

Erplain

  • GraphQL
    • Setup
    • Postman
    • Basic query
    • Filters
    • Pagination
    • Sorting
    • Fragments
    • Throttling

Sales

  • Credit notes
  • Estimates
  • Invoices
  • Payments
  • Product returns
  • Refunds
  • Sales orders
  • Shipping orders
  • Subscriptions

Inventory

  • Deliveries
  • Purchase orders
  • Stock entries
  • Stock levels
  • Stock movements
  • Stock removals

Products & Services

  • Products
    • Product tags
  • Services
    • Service prices
  • Variants
    • Attributes
    • Components
    • Options
    • Packs
    • Prices

Contacts

  • Contacts
  • Customers
    • Customer tags
  • Employees
  • Suppliers
    • Supplier tags

Settings

  • Account managers
  • Currencies
  • Locations
  • Payment informations
  • Payment methods
  • Price levels
  • Taxes
  • Users

Supporting entities

  • Addresses
  • Batches
  • Brands
  • Customer addresses
  • Line items
    • Line item products
  • Postal addresses
  • Seasons
  • Total taxes

Other

  • Decimal
  • Object
  • Date
Powered by 

Total taxes

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
        }
      }
    }
  }
}
  • Table of Contents
    • Available queries
    • Available fields
    • Example of a query