OBJECT

InvoiceCostCenter

InvoiceCostCenter books a ClientCompanyCostCenter amount for an Invoice.

link GraphQL Schema definition

  • type InvoiceCostCenter 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!
  • clientCompanyCostCenterRowId: UUID!
  • amount: Float!
  • page: Int
  • posX: Float
  • posY: Float
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `Invoice` that is related to this `InvoiceCostCenter`.
  • invoiceByInvoiceDocumentRowId: Invoice!
  • # Reads a single `ClientCompanyCostCenter` that is related to this
  • # `InvoiceCostCenter`.
  • clientCompanyCostCenterByClientCompanyCostCenterRowId: ClientCompanyCostCenter!
  • }