OBJECT

Discount

link GraphQL Schema definition

  • type Discount {
  • exclTaxCalculated: Decimal!
  • # Is the discount inherited ex: article global discount from transaction discount
  • inherited: Boolean!
  • # The type of discount `global` or `unit`
  • type: String!
  • # The unit of discount `amount` or `percentage`
  • unit: String!
  • value: Decimal!
  • vatCalculated: Decimal!
  • }