OBJECT

InvoiceItem

InvoiceItem details

link GraphQL Schema definition

  • type InvoiceItem {
  • # amount of the invoice item (in cents)
  • amount: Money
  • # When the invoice item was created
  • createdAt: ISO8601DateTime!
  • # description of the invoice item
  • description: String
  • # ID of the invoice item
  • id: ID!
  • # invoice of the invoice item
  • invoice: Invoice
  • # name of the invoice item
  • name: String
  • # quantity of the invoice item
  • quantity: Int
  • # gst_amount of the invoice item (in cents)
  • taxAmount: Money
  • # tax_rate of the invoice item
  • taxRate: TaxRate
  • # When the invoice item was last updated
  • updatedAt: ISO8601DateTime!
  • }