OBJECT

InvoiceCostUnit

InvoiceCostUnit books a ClientCompanyCostUnit amount for an Invoice.

link GraphQL Schema definition

  • type InvoiceCostUnit implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • invoiceDocumentRowId: UUID!
  • clientCompanyCostUnitRowId: UUID!
  • amount: Float!
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `Invoice` that is related to this `InvoiceCostUnit`.
  • invoiceByInvoiceDocumentRowId: Invoice!
  • # Reads a single `ClientCompanyCostUnit` that is related to this
  • # `InvoiceCostUnit`.
  • clientCompanyCostUnitByClientCompanyCostUnitRowId: ClientCompanyCostUnit!
  • }