OBJECT
ClientCompanyCostCenter
A ClientCompanyCostCenter represents a cost center which is linked to a ClientCompany.
link GraphQL Schema definition
- type ClientCompanyCostCenter implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID!
- : String!
- : String!
- : Datetime
- : CurrencyCode!
- : UpdatedTime
- : CreatedTime
- # Reads a single `ClientCompany` that is related to this
- # `ClientCompanyCostCenter`.
- : ClientCompany!
- # Reads and enables pagination through a set of `InvoiceAccountingItemCostCenter`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering
- # `InvoiceAccountingItemCostCenter`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceAccountingItemCostCentersOrderBy!],
- : InvoiceAccountingItemCostCenterCondition
- ): InvoiceAccountingItemCostCentersConnection!
- # Reads and enables pagination through a set of `InvoiceCostCenter`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `InvoiceCostCenter`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceCostCentersOrderBy!],
- : InvoiceCostCenterCondition
- ): InvoiceCostCentersConnection!
- }
link Require by
- ClientCompanyCostCentersConnectionA connection to a list of `ClientCompanyCostCenter` values.
- ClientCompanyCostCentersEdgeA `ClientCompanyCostCenter` edge in the connection.
- InvoiceAccountingItemCostCenter`InvoiceAccountingItemCostCenter` books a `ClientCompanyCostCenter` amount for an `InvoiceAccountingItem`.
- InvoiceCostCenter`InvoiceCostCenter` books a `ClientCompanyCostCenter` amount for an `Invoice`.
- QueryThe root query type which gives access points into the data universe.