OBJECT

InvoiceAccountingItemCostUnit

InvoiceAccountingItemCostUnit books a ClientCompanyCostUnit amount for an InvoiceAccountingItem.

link GraphQL Schema definition

  • type InvoiceAccountingItemCostUnit implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • invoiceAccountingItemRowId: UUID!
  • clientCompanyCostUnitRowId: UUID!
  • number: String!
  • description: String!
  • currency: CurrencyCode!
  • amount: Float!
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `InvoiceAccountingItem` that is related to this
  • # `InvoiceAccountingItemCostUnit`.
  • invoiceAccountingItemByInvoiceAccountingItemRowId: InvoiceAccountingItem!
  • # Reads a single `ClientCompanyCostUnit` that is related to this
  • # `InvoiceAccountingItemCostUnit`.
  • clientCompanyCostUnitByClientCompanyCostUnitRowId: ClientCompanyCostUnit!
  • }