OBJECT

CommercialInvoice

link GraphQL Schema definition

  • type CommercialInvoice {
  • # The number of the CommercialInvoice.
  • invoiceNumber: String
  • # The commercial invoice's seller.
  • seller: Supplier
  • # The currency listed on the CommercialInvoice.
  • currency: CurrencyCode
  • # The Foreign Currency Exchange Rate of the listed currency.
  • currencyRate: Float
  • # The total value listed on the CommercialInvoice.
  • value: Money
  • # Adjustments to the CommercialInvoice.
  • adjustments: [Adjustment!]
  • # Data associated with the CommercialInvoice's products, new Product entities.
  • products: [EntryProduct!]
  • }