OBJECT

ClientCompany

Represents a Company which is a finance client company.

link GraphQL Schema definition

  • type ClientCompany implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • companyRowId: UUID!
  • accountingCompanyClientCompanyRowId: UUID!
  • importMembers: [String]!
  • emailAlias: String!
  • processing: ProcessingFrequency!
  • vatDeclaration: VatDeclarationFrequency!
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `Company` that is related to this `ClientCompany`.
  • companyByCompanyRowId: Company!
  • # Reads a single `AccountingCompany` that is related to this `ClientCompany`.
  • accountingCompanyByAccountingCompanyClientCompanyRowId: AccountingCompany!
  • # Reads a single `AccountingCompany` that is related to this `ClientCompany`.
  • accountingCompanyByClientCompanyRowId: AccountingCompany
  • # Reads and enables pagination through a set of `AccountingCompany`.
  • #
  • # 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 `AccountingCompany`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • accountingCompaniesByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [AccountingCompaniesOrderBy!],
  • condition: AccountingCompanyCondition
  • ): AccountingCompaniesConnection! @deprecated( reason: "Please use accountingCompanyByClientCompanyRowId instead" )
  • # Reads and enables pagination through a set of `AccountingInstruction`.
  • #
  • # 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
  • # `AccountingInstruction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • accountingInstructionsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [AccountingInstructionsOrderBy!],
  • condition: AccountingInstructionCondition
  • ): AccountingInstructionsConnection!
  • # Reads and enables pagination through a set of `BankAccount`.
  • #
  • # 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 `BankAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • bankAccountsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [BankAccountsOrderBy!],
  • condition: BankAccountCondition
  • ): BankAccountsConnection!
  • # Reads and enables pagination through a set of `ClientCompanyCostCenter`.
  • #
  • # 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
  • # `ClientCompanyCostCenter`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • clientCompanyCostCentersByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompanyCostCentersOrderBy!],
  • condition: ClientCompanyCostCenterCondition
  • ): ClientCompanyCostCentersConnection!
  • # Reads and enables pagination through a set of `ClientCompanyCostUnit`.
  • #
  • # 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
  • # `ClientCompanyCostUnit`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • clientCompanyCostUnitsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompanyCostUnitsOrderBy!],
  • condition: ClientCompanyCostUnitCondition
  • ): ClientCompanyCostUnitsConnection!
  • # Reads and enables pagination through a set of `ClientCompanyPurchase`.
  • #
  • # 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
  • # `ClientCompanyPurchase`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • clientCompanyPurchasesByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompanyPurchasesOrderBy!],
  • condition: ClientCompanyPurchaseCondition
  • ): ClientCompanyPurchasesConnection!
  • # Reads and enables pagination through a set of `ClientCompanyTag`.
  • #
  • # 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 `ClientCompanyTag`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • clientCompanyTagsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompanyTagsOrderBy!],
  • condition: ClientCompanyTagCondition
  • ): ClientCompanyTagsConnection!
  • # Reads and enables pagination through a set of `CreditCardAccount`.
  • #
  • # 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 `CreditCardAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • creditCardAccountsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CreditCardAccountsOrderBy!],
  • condition: CreditCardAccountCondition
  • ): CreditCardAccountsConnection!
  • # Reads and enables pagination through a set of `DeletedDocument`.
  • #
  • # 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 `DeletedDocument`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • deletedDocumentsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeletedDocumentsOrderBy!],
  • condition: DeletedDocumentCondition
  • ): DeletedDocumentsConnection!
  • # Reads and enables pagination through a set of `Document`.
  • #
  • # 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 `Document`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentsOrderBy!],
  • condition: DocumentCondition
  • ): DocumentsConnection!
  • # Reads and enables pagination through a set of `DocumentCategory`.
  • #
  • # 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 `DocumentCategory`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentCategoriesByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCategoriesOrderBy!],
  • condition: DocumentCategoryCondition
  • ): DocumentCategoriesConnection!
  • # Reads and enables pagination through a set of `DocumentWorkflow`.
  • #
  • # 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 `DocumentWorkflow`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentWorkflowsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentWorkflowsOrderBy!],
  • condition: DocumentWorkflowCondition
  • ): DocumentWorkflowsConnection!
  • # Reads and enables pagination through a set of `Export`.
  • #
  • # 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 `Export`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • exportsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ExportsOrderBy!],
  • condition: ExportCondition
  • ): ExportsConnection!
  • # Reads and enables pagination through a set of `MoneyAccount`.
  • #
  • # 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 `MoneyAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • moneyAccountsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [MoneyAccountsOrderBy!],
  • condition: MoneyAccountCondition
  • ): MoneyAccountsConnection!
  • # Reads and enables pagination through a set of `ObjectInstance`.
  • #
  • # 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 `ObjectInstance`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • objectInstancesByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ObjectInstancesOrderBy!],
  • condition: ObjectInstanceCondition
  • ): ObjectInstancesConnection!
  • # Reads a single `OpHealthCheck` that is related to this `ClientCompany`.
  • opHealthCheckByClientCompanyRowId: OpHealthCheck
  • # Reads and enables pagination through a set of `OpHealthCheck`.
  • #
  • # 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 `OpHealthCheck`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • opHealthChecksByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [OpHealthChecksOrderBy!],
  • condition: OpHealthCheckCondition
  • ): OpHealthChecksConnection! @deprecated( reason: "Please use opHealthCheckByClientCompanyRowId instead" )
  • # Reads and enables pagination through a set of `RealEstateObject`.
  • #
  • # 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 `RealEstateObject`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • realEstateObjectsByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [RealEstateObjectsOrderBy!],
  • condition: RealEstateObjectCondition
  • ): RealEstateObjectsConnection!
  • # Reads and enables pagination through a set of `User`.
  • #
  • # 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 `User`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • usersByClientCompanyRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [UsersOrderBy!],
  • condition: UserCondition
  • ): UsersConnection!
  • # `ClientCompany` has accounting enabled.
  • hasAccounting: Boolean
  • }

link Require by