OBJECT

Query

The root query type which gives access points into the data universe.

link GraphQL Schema definition

  • type Query implements Node {
  • # Exposes the root query type nested one level down. This is helpful for Relay 1
  • # which can only query top level fields if they are in a particular form.
  • query: Query!
  • # The root query type must be a `Node` to work well with Relay 1 mutations. This
  • # just resolves to `query`.
  • id: ID!
  • # Fetches an object given its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID`.
  • node(id: ID!): Node
  • # 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.
  • allAccountingCompanies(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [AccountingCompaniesOrderBy!],
  • condition: AccountingCompanyCondition
  • ): AccountingCompaniesConnection
  • # 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.
  • allAccountingInstructions(
  • 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.
  • allBankAccounts(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [BankAccountsOrderBy!],
  • condition: BankAccountCondition
  • ): BankAccountsConnection
  • # Reads and enables pagination through a set of `BankTransaction`.
  • #
  • # 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 `BankTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allBankTransactions(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [BankTransactionsOrderBy!],
  • condition: BankTransactionCondition
  • ): BankTransactionsConnection
  • # Reads and enables pagination through a set of `ClientCompany`.
  • #
  • # 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 `ClientCompany`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allClientCompanies(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompaniesOrderBy!],
  • condition: ClientCompanyCondition
  • ): ClientCompaniesConnection
  • # 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.
  • allClientCompanyCostCenters(
  • 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.
  • allClientCompanyCostUnits(
  • 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.
  • allClientCompanyPurchases(
  • 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.
  • allClientCompanyTags(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ClientCompanyTagsOrderBy!],
  • condition: ClientCompanyTagCondition
  • ): ClientCompanyTagsConnection
  • # Reads and enables pagination through a set of `Company`.
  • #
  • # 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 `Company`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allCompanies(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CompaniesOrderBy!],
  • condition: CompanyCondition
  • ): CompaniesConnection
  • # Reads and enables pagination through a set of `CompanyLocation`.
  • #
  • # 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 `CompanyLocation`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allCompanyLocations(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CompanyLocationsOrderBy!],
  • condition: CompanyLocationCondition
  • ): CompanyLocationsConnection
  • # 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.
  • allCreditCardAccounts(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CreditCardAccountsOrderBy!],
  • condition: CreditCardAccountCondition
  • ): CreditCardAccountsConnection
  • # Reads and enables pagination through a set of `CreditCardTransaction`.
  • #
  • # 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
  • # `CreditCardTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allCreditCardTransactions(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CreditCardTransactionsOrderBy!],
  • condition: CreditCardTransactionCondition
  • ): CreditCardTransactionsConnection
  • # Reads and enables pagination through a set of `CurrencyRate`.
  • #
  • # 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 `CurrencyRate`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allCurrencyRates(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CurrencyRatesOrderBy!],
  • condition: CurrencyRateCondition
  • ): CurrencyRatesConnection
  • # 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.
  • allDeletedDocuments(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeletedDocumentsOrderBy!],
  • condition: DeletedDocumentCondition
  • ): DeletedDocumentsConnection
  • # Reads and enables pagination through a set of `DeliveryNote`.
  • #
  • # 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 `DeliveryNote`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDeliveryNotes(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeliveryNotesOrderBy!],
  • condition: DeliveryNoteCondition
  • ): DeliveryNotesConnection
  • # Reads and enables pagination through a set of `DeliveryNoteItem`.
  • #
  • # 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 `DeliveryNoteItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDeliveryNoteItems(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeliveryNoteItemsOrderBy!],
  • condition: DeliveryNoteItemCondition
  • ): DeliveryNoteItemsConnection
  • # 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.
  • allDocuments(
  • 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.
  • allDocumentCategories(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCategoriesOrderBy!],
  • condition: DocumentCategoryCondition
  • ): DocumentCategoriesConnection
  • # Reads and enables pagination through a set of `DocumentCategoryObjectInstance`.
  • #
  • # 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
  • # `DocumentCategoryObjectInstance`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentCategoryObjectInstances(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCategoryObjectInstancesOrderBy!],
  • condition: DocumentCategoryObjectInstanceCondition
  • ): DocumentCategoryObjectInstancesConnection
  • # Reads and enables pagination through a set of `DocumentComment`.
  • #
  • # 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 `DocumentComment`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentComments(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentsOrderBy!],
  • condition: DocumentCommentCondition
  • ): DocumentCommentsConnection
  • # Reads and enables pagination through a set of `DocumentCommentLike`.
  • #
  • # 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 `DocumentCommentLike`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentCommentLikes(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentLikesOrderBy!],
  • condition: DocumentCommentLikeCondition
  • ): DocumentCommentLikesConnection
  • # Reads and enables pagination through a set of `DocumentCommentSeen`.
  • #
  • # 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 `DocumentCommentSeen`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentCommentSeens(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentSeensOrderBy!],
  • condition: DocumentCommentSeenCondition
  • ): DocumentCommentSeensConnection
  • # Reads and enables pagination through a set of `DocumentMoneyTransaction`.
  • #
  • # 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
  • # `DocumentMoneyTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentMoneyTransactions(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentMoneyTransactionsOrderBy!],
  • condition: DocumentMoneyTransactionCondition
  • ): DocumentMoneyTransactionsConnection
  • # Reads and enables pagination through a set of `DocumentRecurringPayment`.
  • #
  • # 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
  • # `DocumentRecurringPayment`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentRecurringPayments(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentRecurringPaymentsOrderBy!],
  • condition: DocumentRecurringPaymentCondition
  • ): DocumentRecurringPaymentsConnection
  • # Reads and enables pagination through a set of `DocumentTag`.
  • #
  • # 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 `DocumentTag`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentTags(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentTagsOrderBy!],
  • condition: DocumentTagCondition
  • ): DocumentTagsConnection
  • # Reads and enables pagination through a set of `DocumentVersion`.
  • #
  • # 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 `DocumentVersion`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentVersions(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentVersionsOrderBy!],
  • condition: DocumentVersionCondition
  • ): DocumentVersionsConnection
  • # Reads and enables pagination through a set of `DocumentVersionFile`.
  • #
  • # 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 `DocumentVersionFile`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentVersionFiles(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentVersionFilesOrderBy!],
  • condition: DocumentVersionFileCondition
  • ): DocumentVersionFilesConnection
  • # 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.
  • allDocumentWorkflows(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentWorkflowsOrderBy!],
  • condition: DocumentWorkflowCondition
  • ): DocumentWorkflowsConnection
  • # Reads and enables pagination through a set of `DocumentWorkflowState`.
  • #
  • # 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
  • # `DocumentWorkflowState`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentWorkflowStates(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentWorkflowStatesOrderBy!],
  • condition: DocumentWorkflowStateCondition
  • ): DocumentWorkflowStatesConnection
  • # Reads and enables pagination through a set of `DocumentWorkflowStep`.
  • #
  • # 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
  • # `DocumentWorkflowStep`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allDocumentWorkflowSteps(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentWorkflowStepsOrderBy!],
  • condition: DocumentWorkflowStepCondition
  • ): DocumentWorkflowStepsConnection
  • # 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.
  • allExports(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ExportsOrderBy!],
  • condition: ExportCondition
  • ): ExportsConnection
  • # Reads and enables pagination through a set of `ExportDocument`.
  • #
  • # 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 `ExportDocument`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allExportDocuments(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ExportDocumentsOrderBy!],
  • condition: ExportDocumentCondition
  • ): ExportDocumentsConnection
  • # Reads and enables pagination through a set of `GeneralLedgerAccount`.
  • #
  • # 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
  • # `GeneralLedgerAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allGeneralLedgerAccounts(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [GeneralLedgerAccountsOrderBy!],
  • condition: GeneralLedgerAccountCondition
  • ): GeneralLedgerAccountsConnection
  • # Reads and enables pagination through a set of `IdwellCrmTicket`.
  • #
  • # 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 `IdwellCrmTicket`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allIdwellCrmTickets(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [IdwellCrmTicketsOrderBy!],
  • condition: IdwellCrmTicketCondition
  • ): IdwellCrmTicketsConnection
  • # Reads and enables pagination through a set of `Invoice`.
  • #
  • # 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 `Invoice`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoices(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoicesOrderBy!],
  • condition: InvoiceCondition
  • ): InvoicesConnection
  • # Reads and enables pagination through a set of `InvoiceAccountingItem`.
  • #
  • # 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
  • # `InvoiceAccountingItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceAccountingItems(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemsOrderBy!],
  • condition: InvoiceAccountingItemCondition
  • ): InvoiceAccountingItemsConnection
  • # Reads and enables pagination through a set of `InvoiceAccountingItem35A`.
  • #
  • # 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
  • # `InvoiceAccountingItem35A`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceAccountingItem35As(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItem35AsOrderBy!],
  • condition: InvoiceAccountingItem35ACondition
  • ): InvoiceAccountingItem35AsConnection
  • # 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.
  • allInvoiceAccountingItemCostCenters(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemCostCentersOrderBy!],
  • condition: InvoiceAccountingItemCostCenterCondition
  • ): InvoiceAccountingItemCostCentersConnection
  • # Reads and enables pagination through a set of `InvoiceAccountingItemCostUnit`.
  • #
  • # 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
  • # `InvoiceAccountingItemCostUnit`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceAccountingItemCostUnits(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemCostUnitsOrderBy!],
  • condition: InvoiceAccountingItemCostUnitCondition
  • ): InvoiceAccountingItemCostUnitsConnection
  • # 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.
  • allInvoiceCostCenters(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceCostCentersOrderBy!],
  • condition: InvoiceCostCenterCondition
  • ): InvoiceCostCentersConnection
  • # Reads and enables pagination through a set of `InvoiceCostUnit`.
  • #
  • # 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 `InvoiceCostUnit`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceCostUnits(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceCostUnitsOrderBy!],
  • condition: InvoiceCostUnitCondition
  • ): InvoiceCostUnitsConnection
  • # Reads and enables pagination through a set of `InvoiceDeliveryNote`.
  • #
  • # 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 `InvoiceDeliveryNote`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceDeliveryNotes(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceDeliveryNotesOrderBy!],
  • condition: InvoiceDeliveryNoteCondition
  • ): InvoiceDeliveryNotesConnection
  • # Reads and enables pagination through a set of `InvoiceItem`.
  • #
  • # 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 `InvoiceItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allInvoiceItems(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceItemsOrderBy!],
  • condition: InvoiceItemCondition
  • ): InvoiceItemsConnection
  • # 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.
  • allMoneyAccounts(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [MoneyAccountsOrderBy!],
  • condition: MoneyAccountCondition
  • ): MoneyAccountsConnection
  • # Reads and enables pagination through a set of `MoneyTransaction`.
  • #
  • # 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 `MoneyTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allMoneyTransactions(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [MoneyTransactionsOrderBy!],
  • condition: MoneyTransactionCondition
  • ): MoneyTransactionsConnection
  • # Reads and enables pagination through a set of `ObjectClassProp`.
  • #
  • # 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 `ObjectClassProp`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allObjectClassProps(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ObjectClassPropsOrderBy!],
  • condition: ObjectClassPropCondition
  • ): ObjectClassPropsConnection
  • # 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.
  • allObjectInstances(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ObjectInstancesOrderBy!],
  • condition: ObjectInstanceCondition
  • ): ObjectInstancesConnection
  • # 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.
  • allOpHealthChecks(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [OpHealthChecksOrderBy!],
  • condition: OpHealthCheckCondition
  • ): OpHealthChecksConnection
  • # Reads and enables pagination through a set of `PartnerAccount`.
  • #
  • # 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 `PartnerAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allPartnerAccounts(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [PartnerAccountsOrderBy!],
  • condition: PartnerAccountCondition
  • ): PartnerAccountsConnection
  • # Reads and enables pagination through a set of `PartnerCompany`.
  • #
  • # 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 `PartnerCompany`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • allPartnerCompanies(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [PartnerCompaniesOrderBy!],
  • condition: PartnerCompanyCondition
  • ): PartnerCompaniesConnection
  • # 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.
  • allRealEstateObjects(
  • 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.
  • allUsers(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [UsersOrderBy!],
  • condition: UserCondition
  • ): UsersConnection
  • # Arguments
  • # clientCompanyRowId: [Not documented]
  • accountingCompanyByClientCompanyRowId(
  • clientCompanyRowId: UUID!
  • ): AccountingCompany
  • # Arguments
  • # rowId: [Not documented]
  • accountingInstructionByRowId(rowId: UUID!): AccountingInstruction
  • # Arguments
  • # rowId: [Not documented]
  • bankAccountByRowId(rowId: UUID!): BankAccount
  • # Arguments
  • # rowId: [Not documented]
  • bankTransactionByRowId(rowId: UUID!): BankTransaction
  • # Arguments
  • # companyRowId: [Not documented]
  • clientCompanyByCompanyRowId(companyRowId: UUID!): ClientCompany
  • # Arguments
  • # rowId: [Not documented]
  • clientCompanyCostCenterByRowId(rowId: UUID!): ClientCompanyCostCenter
  • # Arguments
  • # rowId: [Not documented]
  • clientCompanyCostUnitByRowId(rowId: UUID!): ClientCompanyCostUnit
  • # Arguments
  • # rowId: [Not documented]
  • clientCompanyPurchaseByRowId(rowId: UUID!): ClientCompanyPurchase
  • # Arguments
  • # rowId: [Not documented]
  • clientCompanyTagByRowId(rowId: UUID!): ClientCompanyTag
  • # Arguments
  • # rowId: [Not documented]
  • companyByRowId(rowId: UUID!): Company
  • # Arguments
  • # rowId: [Not documented]
  • companyLocationByRowId(rowId: UUID!): CompanyLocation
  • # Arguments
  • # rowId: [Not documented]
  • creditCardAccountByRowId(rowId: UUID!): CreditCardAccount
  • # Arguments
  • # rowId: [Not documented]
  • creditCardTransactionByRowId(rowId: UUID!): CreditCardTransaction
  • # Arguments
  • # date: [Not documented]
  • # currency: [Not documented]
  • currencyRateByDateAndCurrency(
  • date: Date!,
  • currency: CurrencyCode!
  • ): CurrencyRate
  • # Arguments
  • # rowId: [Not documented]
  • deletedDocumentByRowId(rowId: UUID!): DeletedDocument
  • # Arguments
  • # documentRowId: [Not documented]
  • deliveryNoteByDocumentRowId(documentRowId: UUID!): DeliveryNote
  • # Arguments
  • # rowId: [Not documented]
  • deliveryNoteItemByRowId(rowId: UUID!): DeliveryNoteItem
  • # Arguments
  • # rowId: [Not documented]
  • documentByRowId(rowId: UUID!): Document
  • # Arguments
  • # rowId: [Not documented]
  • documentCategoryByRowId(rowId: UUID!): DocumentCategory
  • # Arguments
  • # documentCategoryRowId: [Not documented]
  • # objectInstanceRowId: [Not documented]
  • documentCategoryObjectInstanceByDocumentCategoryRowIdAndObjectInstanceRowId(
  • documentCategoryRowId: UUID!,
  • objectInstanceRowId: UUID!
  • ): DocumentCategoryObjectInstance
  • # Arguments
  • # rowId: [Not documented]
  • documentCommentByRowId(rowId: UUID!): DocumentComment
  • # Arguments
  • # documentCommentRowId: [Not documented]
  • # likedBy: [Not documented]
  • documentCommentLikeByDocumentCommentRowIdAndLikedBy(
  • documentCommentRowId: UUID!,
  • likedBy: UUID!
  • ): DocumentCommentLike
  • # Arguments
  • # documentCommentRowId: [Not documented]
  • # seenBy: [Not documented]
  • documentCommentSeenByDocumentCommentRowIdAndSeenBy(
  • documentCommentRowId: UUID!,
  • seenBy: UUID!
  • ): DocumentCommentSeen
  • # Arguments
  • # rowId: [Not documented]
  • documentRecurringPaymentByRowId(rowId: UUID!): DocumentRecurringPayment
  • # Arguments
  • # clientCompanyTagRowId: [Not documented]
  • # documentRowId: [Not documented]
  • documentTagByClientCompanyTagRowIdAndDocumentRowId(
  • clientCompanyTagRowId: UUID!,
  • documentRowId: UUID!
  • ): DocumentTag
  • # Arguments
  • # rowId: [Not documented]
  • documentVersionByRowId(rowId: UUID!): DocumentVersion
  • # Arguments
  • # rowId: [Not documented]
  • documentWorkflowByRowId(rowId: UUID!): DocumentWorkflow
  • # Arguments
  • # documentRowId: [Not documented]
  • documentWorkflowStateByDocumentRowId(
  • documentRowId: UUID!
  • ): DocumentWorkflowState
  • # Arguments
  • # rowId: [Not documented]
  • documentWorkflowStepByRowId(rowId: UUID!): DocumentWorkflowStep
  • # Arguments
  • # rowId: [Not documented]
  • exportByRowId(rowId: UUID!): Export
  • # Arguments
  • # exportRowId: [Not documented]
  • # documentRowId: [Not documented]
  • exportDocumentByExportRowIdAndDocumentRowId(
  • exportRowId: UUID!,
  • documentRowId: UUID!
  • ): ExportDocument
  • # Arguments
  • # rowId: [Not documented]
  • generalLedgerAccountByRowId(rowId: UUID!): GeneralLedgerAccount
  • # Arguments
  • # documentRowId: [Not documented]
  • invoiceByDocumentRowId(documentRowId: UUID!): Invoice
  • # Arguments
  • # rowId: [Not documented]
  • invoiceAccountingItemByRowId(rowId: UUID!): InvoiceAccountingItem
  • # Arguments
  • # invoiceAccountingItemRowId: [Not documented]
  • invoiceAccountingItem35AByInvoiceAccountingItemRowId(
  • invoiceAccountingItemRowId: UUID!
  • ): InvoiceAccountingItem35A
  • # Arguments
  • # rowId: [Not documented]
  • invoiceAccountingItemCostCenterByRowId(
  • rowId: UUID!
  • ): InvoiceAccountingItemCostCenter
  • # Arguments
  • # rowId: [Not documented]
  • invoiceAccountingItemCostUnitByRowId(
  • rowId: UUID!
  • ): InvoiceAccountingItemCostUnit
  • # Arguments
  • # rowId: [Not documented]
  • invoiceCostCenterByRowId(rowId: UUID!): InvoiceCostCenter
  • # Arguments
  • # rowId: [Not documented]
  • invoiceCostUnitByRowId(rowId: UUID!): InvoiceCostUnit
  • # Arguments
  • # invoiceDocumentRowId: [Not documented]
  • # deliveryNoteDocumentRowId: [Not documented]
  • invoiceDeliveryNoteByInvoiceDocumentRowIdAndDeliveryNoteDocumentRowId(
  • invoiceDocumentRowId: UUID!,
  • deliveryNoteDocumentRowId: UUID!
  • ): InvoiceDeliveryNote
  • # Arguments
  • # rowId: [Not documented]
  • invoiceItemByRowId(rowId: UUID!): InvoiceItem
  • # Arguments
  • # rowId: [Not documented]
  • moneyAccountByRowId(rowId: UUID!): MoneyAccount
  • # Arguments
  • # rowId: [Not documented]
  • moneyTransactionByRowId(rowId: UUID!): MoneyTransaction
  • # Arguments
  • # rowId: [Not documented]
  • objectClassPropByRowId(rowId: UUID!): ObjectClassProp
  • # Arguments
  • # rowId: [Not documented]
  • objectInstanceByRowId(rowId: UUID!): ObjectInstance
  • # Arguments
  • # clientCompanyRowId: [Not documented]
  • opHealthCheckByClientCompanyRowId(
  • clientCompanyRowId: UUID!
  • ): OpHealthCheck
  • # Arguments
  • # rowId: [Not documented]
  • partnerAccountByRowId(rowId: UUID!): PartnerAccount
  • # Arguments
  • # rowId: [Not documented]
  • partnerCompanyByRowId(rowId: UUID!): PartnerCompany
  • # Arguments
  • # rowId: [Not documented]
  • realEstateObjectByRowId(rowId: UUID!): RealEstateObject
  • # Arguments
  • # rowId: [Not documented]
  • userByRowId(rowId: UUID!): User
  • # Currently authenticated `ClientCompany`.
  • currentClientCompany: ClientCompany
  • # Currently authenticated `ClientCompany.company_id`.
  • currentClientCompanyId: UUID
  • # Reads and enables pagination through a set of `Document`.
  • #
  • # Arguments
  • # searchText: [Not documented]
  • # archived: [Not documented]
  • # hasWarning: [Not documented]
  • # internalNumber: [Not documented]
  • # dateFilterType: [Not documented]
  • # fromDate: [Not documented]
  • # untilDate: [Not documented]
  • # minTotal: [Not documented]
  • # maxTotal: [Not documented]
  • # exportStatus: [Not documented]
  • # paidStatus: [Not documented]
  • # excludeDocumentTypes: [Not documented]
  • # documentTypes: [Not documented]
  • # excludeDocumentCategoryRowIds: [Not
  • # documented]
  • # documentCategoryRowIds: [Not documented]
  • # excludePartnerCompanyRowIds: [Not documented]
  • # partnerCompanyRowIds: [Not documented]
  • # excludeClientCompanyTagRowIds: [Not
  • # documented]
  • # clientCompanyTagRowIds: [Not documented]
  • # excludeClientCompanyCostCenterRowIds: [Not
  • # documented]
  • # clientCompanyCostCenterRowIds: [Not
  • # documented]
  • # excludeClientCompanyCostUnitRowIds: [Not
  • # documented]
  • # clientCompanyCostUnitRowIds: [Not documented]
  • # excludeGeneralLedgerAccountRowIds: [Not
  • # documented]
  • # generalLedgerAccountRowIds: [Not documented]
  • # excludeDocumentWorkflowStepRowIds: [Not
  • # documented]
  • # documentWorkflowStepRowIds: [Not documented]
  • # isCreditMemo: [Not documented]
  • # hasPain001Payment: [Not documented]
  • # hasPain008DirectDebit: [Not documented]
  • # isPaymentReminderSent: [Not documented]
  • # isApproved: [Not documented]
  • # requestedApproverRowIds: [Not documented]
  • # excludeInvoiceCompletenessDetails: [Not
  • # documented]
  • # invoiceCompletenessDetails: [Not documented]
  • # isDuplicate: [Not documented]
  • # hasComments: [Not documented]
  • # commentMentionedUserRowIdIsSeen: [Not
  • # documented]
  • # commentMentionedUserRowId: [Not documented]
  • # moneyAccountRowIds: [Not documented]
  • # baseDocumentRowIds: [Not documented]
  • # isRecurring: [Not documented]
  • # contractType: [Not documented]
  • # excludeDocumentRealEstateObjectInstanceRowIds: [Not
  • # documented]
  • # documentRealEstateObjectInstanceRowIds: [Not
  • # documented]
  • # orderBys: [Not documented]
  • # 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.
  • filterDocuments(
  • searchText: String,
  • archived: Boolean,
  • hasWarning: Boolean,
  • internalNumber: String,
  • dateFilterType: FilterDocumentsDateFilterType,
  • fromDate: Date,
  • untilDate: Date,
  • minTotal: Float,
  • maxTotal: Float,
  • exportStatus: FilterDocumentsExportStatus,
  • paidStatus: FilterDocumentsPaidStatus,
  • excludeDocumentTypes: Boolean,
  • documentTypes: [DocumentType],
  • excludeDocumentCategoryRowIds: Boolean,
  • documentCategoryRowIds: [UUID],
  • excludePartnerCompanyRowIds: Boolean,
  • partnerCompanyRowIds: [UUID],
  • excludeClientCompanyTagRowIds: Boolean,
  • clientCompanyTagRowIds: [UUID],
  • excludeClientCompanyCostCenterRowIds: Boolean,
  • clientCompanyCostCenterRowIds: [UUID],
  • excludeClientCompanyCostUnitRowIds: Boolean,
  • clientCompanyCostUnitRowIds: [UUID],
  • excludeGeneralLedgerAccountRowIds: Boolean,
  • generalLedgerAccountRowIds: [UUID],
  • excludeDocumentWorkflowStepRowIds: Boolean,
  • documentWorkflowStepRowIds: [UUID],
  • isCreditMemo: Boolean,
  • hasPain001Payment: Boolean,
  • hasPain008DirectDebit: Boolean,
  • isPaymentReminderSent: Boolean,
  • isApproved: Boolean,
  • requestedApproverRowIds: [UUID],
  • excludeInvoiceCompletenessDetails: Boolean,
  • invoiceCompletenessDetails: [InvoiceCompletenessDetail],
  • isDuplicate: Boolean,
  • hasComments: Boolean,
  • commentMentionedUserRowIdIsSeen: Boolean,
  • commentMentionedUserRowId: UUID,
  • moneyAccountRowIds: [UUID],
  • baseDocumentRowIds: [UUID],
  • isRecurring: Boolean,
  • contractType: OtherDocumentContractType,
  • excludeDocumentRealEstateObjectInstanceRowIds: Boolean,
  • documentRealEstateObjectInstanceRowIds: [UUID],
  • orderBys: [FilterDocumentsOrderBy],
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): DocumentsConnection!
  • # Arguments
  • # searchText: [Not documented]
  • # archived: [Not documented]
  • # hasWarning: [Not documented]
  • # internalNumber: [Not documented]
  • # dateFilterType: [Not documented]
  • # fromDate: [Not documented]
  • # untilDate: [Not documented]
  • # minTotal: [Not documented]
  • # maxTotal: [Not documented]
  • # exportStatus: [Not documented]
  • # paidStatus: [Not documented]
  • # excludeDocumentTypes: [Not documented]
  • # documentTypes: [Not documented]
  • # excludeDocumentCategoryRowIds: [Not
  • # documented]
  • # documentCategoryRowIds: [Not documented]
  • # excludePartnerCompanyRowIds: [Not documented]
  • # partnerCompanyRowIds: [Not documented]
  • # excludeClientCompanyTagRowIds: [Not
  • # documented]
  • # clientCompanyTagRowIds: [Not documented]
  • # excludeClientCompanyCostCenterRowIds: [Not
  • # documented]
  • # clientCompanyCostCenterRowIds: [Not
  • # documented]
  • # excludeClientCompanyCostUnitRowIds: [Not
  • # documented]
  • # clientCompanyCostUnitRowIds: [Not documented]
  • # excludeGeneralLedgerAccountRowIds: [Not
  • # documented]
  • # generalLedgerAccountRowIds: [Not documented]
  • # excludeDocumentWorkflowStepRowIds: [Not
  • # documented]
  • # documentWorkflowStepRowIds: [Not documented]
  • # isCreditMemo: [Not documented]
  • # hasPain001Payment: [Not documented]
  • # hasPain008DirectDebit: [Not documented]
  • # isPaymentReminderSent: [Not documented]
  • # isApproved: [Not documented]
  • # requestedApproverRowIds: [Not documented]
  • # excludeInvoiceCompletenessDetails: [Not
  • # documented]
  • # invoiceCompletenessDetails: [Not documented]
  • # isDuplicate: [Not documented]
  • # hasComments: [Not documented]
  • # commentMentionedUserRowIdIsSeen: [Not
  • # documented]
  • # commentMentionedUserRowId: [Not documented]
  • # moneyAccountRowIds: [Not documented]
  • # baseDocumentRowIds: [Not documented]
  • # isRecurring: [Not documented]
  • # contractType: [Not documented]
  • # excludeDocumentRealEstateObjectInstanceRowIds: [Not
  • # documented]
  • # documentRealEstateObjectInstanceRowIds: [Not
  • # documented]
  • # orderBys: [Not documented]
  • filterDocumentsStatistics(
  • searchText: String,
  • archived: Boolean,
  • hasWarning: Boolean,
  • internalNumber: String,
  • dateFilterType: FilterDocumentsDateFilterType,
  • fromDate: Date,
  • untilDate: Date,
  • minTotal: Float,
  • maxTotal: Float,
  • exportStatus: FilterDocumentsExportStatus,
  • paidStatus: FilterDocumentsPaidStatus,
  • excludeDocumentTypes: Boolean,
  • documentTypes: [DocumentType],
  • excludeDocumentCategoryRowIds: Boolean,
  • documentCategoryRowIds: [UUID],
  • excludePartnerCompanyRowIds: Boolean,
  • partnerCompanyRowIds: [UUID],
  • excludeClientCompanyTagRowIds: Boolean,
  • clientCompanyTagRowIds: [UUID],
  • excludeClientCompanyCostCenterRowIds: Boolean,
  • clientCompanyCostCenterRowIds: [UUID],
  • excludeClientCompanyCostUnitRowIds: Boolean,
  • clientCompanyCostUnitRowIds: [UUID],
  • excludeGeneralLedgerAccountRowIds: Boolean,
  • generalLedgerAccountRowIds: [UUID],
  • excludeDocumentWorkflowStepRowIds: Boolean,
  • documentWorkflowStepRowIds: [UUID],
  • isCreditMemo: Boolean,
  • hasPain001Payment: Boolean,
  • hasPain008DirectDebit: Boolean,
  • isPaymentReminderSent: Boolean,
  • isApproved: Boolean,
  • requestedApproverRowIds: [UUID],
  • excludeInvoiceCompletenessDetails: Boolean,
  • invoiceCompletenessDetails: [InvoiceCompletenessDetail],
  • isDuplicate: Boolean,
  • hasComments: Boolean,
  • commentMentionedUserRowIdIsSeen: Boolean,
  • commentMentionedUserRowId: UUID,
  • moneyAccountRowIds: [UUID],
  • baseDocumentRowIds: [UUID],
  • isRecurring: Boolean,
  • contractType: OtherDocumentContractType,
  • excludeDocumentRealEstateObjectInstanceRowIds: Boolean,
  • documentRealEstateObjectInstanceRowIds: [UUID],
  • orderBys: [FilterDocumentsOrderBy]
  • ): FilterDocumentsStatisticsResult!
  • # Searches for money transactions with the given filter arguments
  • #
  • # Arguments
  • # searchText: [Not documented]
  • # excludeMoneyAccountRowIds: [Not documented]
  • # moneyAccountRowIds: [Not documented]
  • # type: [Not documented]
  • # fromDate: [Not documented]
  • # untilDate: [Not documented]
  • # minAmount: [Not documented]
  • # maxAmount: [Not documented]
  • # minMatchedCount: [Not documented]
  • # maxMatchedCount: [Not documented]
  • # onlyUnderpaid: [Not documented]
  • # onlyOverpaid: [Not documented]
  • # excludeMoneyCategoryRowIds: [Not documented]
  • # moneyCategoryRowIds: [Not documented]
  • # excludeCashTransactions: [Not documented]
  • # 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.
  • filterMoneyTransactions(
  • searchText: String,
  • excludeMoneyAccountRowIds: Boolean,
  • moneyAccountRowIds: [UUID],
  • type: MoneyTransactionType,
  • fromDate: Date,
  • untilDate: Date,
  • minAmount: Float,
  • maxAmount: Float,
  • minMatchedCount: Int,
  • maxMatchedCount: Int,
  • onlyUnderpaid: Boolean,
  • onlyOverpaid: Boolean,
  • excludeMoneyCategoryRowIds: Boolean,
  • moneyCategoryRowIds: [UUID],
  • excludeCashTransactions: Boolean,
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): MoneyTransactionsConnection!
  • # Filter `Document`s which are open.
  • #
  • # Arguments
  • # searchText: [Not documented]
  • # openItemsType: [Not documented]
  • # orderBy: [Not documented]
  • # documentCategoryRowIds: [Not documented]
  • # partnerCompanyRowIds: [Not documented]
  • # minTotal: [Not documented]
  • # maxTotal: [Not documented]
  • # dateFilterType: [Not documented]
  • # fromDate: [Not documented]
  • # untilDate: [Not documented]
  • # tagRowIds: [Not documented]
  • # costCenterRowIds: [Not documented]
  • # workflowRowIds: [Not documented]
  • # workflowStepRowIds: [Not documented]
  • # hasPain001Payment: [Not documented]
  • # 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.
  • filterOpenItems(
  • searchText: String,
  • openItemsType: OpenItemsType,
  • orderBy: FilterOpenItemsOrderBy,
  • documentCategoryRowIds: [UUID],
  • partnerCompanyRowIds: [UUID],
  • minTotal: Float,
  • maxTotal: Float,
  • dateFilterType: FilterDocumentsDateFilterType,
  • fromDate: Date,
  • untilDate: Date,
  • tagRowIds: [UUID],
  • costCenterRowIds: [UUID],
  • workflowRowIds: [UUID],
  • workflowStepRowIds: [UUID],
  • hasPain001Payment: Boolean,
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): DocumentsConnection! @deprecated( reason: "Consider using `Query.filterDocuments` instead." )
  • # Statistics regarding the filtered `Documents` which are open.
  • #
  • # Arguments
  • # searchText: [Not documented]
  • # openItemsType: [Not documented]
  • # orderBy: [Not documented]
  • # documentCategoryRowIds: [Not documented]
  • # partnerCompanyRowIds: [Not documented]
  • # minTotal: [Not documented]
  • # maxTotal: [Not documented]
  • # dateFilterType: [Not documented]
  • # fromDate: [Not documented]
  • # untilDate: [Not documented]
  • # tagRowIds: [Not documented]
  • # costCenterRowIds: [Not documented]
  • # workflowRowIds: [Not documented]
  • # workflowStepRowIds: [Not documented]
  • # hasPain001Payment: [Not documented]
  • filterOpenItemsStatistics(
  • searchText: String,
  • openItemsType: OpenItemsType,
  • orderBy: FilterOpenItemsOrderBy,
  • documentCategoryRowIds: [UUID],
  • partnerCompanyRowIds: [UUID],
  • minTotal: Float,
  • maxTotal: Float,
  • dateFilterType: FilterDocumentsDateFilterType,
  • fromDate: Date,
  • untilDate: Date,
  • tagRowIds: [UUID],
  • costCenterRowIds: [UUID],
  • workflowRowIds: [UUID],
  • workflowStepRowIds: [UUID],
  • hasPain001Payment: Boolean
  • ): OpenItemsStatistic!
  • # Filter `PartnerCompanies`.
  • #
  • # Arguments
  • # searchText: [Not documented]
  • # 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.
  • filterPartnerCompanies(
  • searchText: String,
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): PartnerCompaniesConnection!
  • # Reads and enables pagination through a set of `ObjectClassProp`.
  • #
  • # Arguments
  • # className: [Not documented]
  • # 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.
  • objectClassProps(
  • className: String!,
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): ObjectClassPropsConnection!
  • # Arguments
  • # rowId: [Not documented]
  • objectInstancePropsJson(rowId: UUID!): JSON
  • # Reads and enables pagination through a set of `ObjectInstance`.
  • #
  • # Arguments
  • # className: [Not documented]
  • # 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.
  • objectInstancesByClassName(
  • className: String!,
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): ObjectInstancesConnection!
  • # `RealEstateObject` with a given number.
  • #
  • # Arguments
  • # objectNo: [Not documented]
  • realEstateObjectByNumber(objectNo: String!): RealEstateObject
  • # Reads a single `AccountingCompany` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `AccountingCompany`.
  • accountingCompany(id: ID!): AccountingCompany
  • # Reads a single `AccountingInstruction` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `AccountingInstruction`.
  • accountingInstruction(id: ID!): AccountingInstruction
  • # Reads a single `BankAccount` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `BankAccount`.
  • bankAccount(id: ID!): BankAccount
  • # Reads a single `BankTransaction` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `BankTransaction`.
  • bankTransaction(id: ID!): BankTransaction
  • # Reads a single `ClientCompany` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ClientCompany`.
  • clientCompany(id: ID!): ClientCompany
  • # Reads a single `ClientCompanyCostCenter` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ClientCompanyCostCenter`.
  • clientCompanyCostCenter(id: ID!): ClientCompanyCostCenter
  • # Reads a single `ClientCompanyCostUnit` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ClientCompanyCostUnit`.
  • clientCompanyCostUnit(id: ID!): ClientCompanyCostUnit
  • # Reads a single `ClientCompanyPurchase` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ClientCompanyPurchase`.
  • clientCompanyPurchase(id: ID!): ClientCompanyPurchase
  • # Reads a single `ClientCompanyTag` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ClientCompanyTag`.
  • clientCompanyTag(id: ID!): ClientCompanyTag
  • # Reads a single `Company` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `Company`.
  • company(id: ID!): Company
  • # Reads a single `CompanyLocation` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `CompanyLocation`.
  • companyLocation(id: ID!): CompanyLocation
  • # Reads a single `CreditCardAccount` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `CreditCardAccount`.
  • creditCardAccount(id: ID!): CreditCardAccount
  • # Reads a single `CreditCardTransaction` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `CreditCardTransaction`.
  • creditCardTransaction(id: ID!): CreditCardTransaction
  • # Reads a single `CurrencyRate` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `CurrencyRate`.
  • currencyRate(id: ID!): CurrencyRate
  • # Reads a single `DeletedDocument` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DeletedDocument`.
  • deletedDocument(id: ID!): DeletedDocument
  • # Reads a single `DeliveryNote` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DeliveryNote`.
  • deliveryNote(id: ID!): DeliveryNote
  • # Reads a single `DeliveryNoteItem` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DeliveryNoteItem`.
  • deliveryNoteItem(id: ID!): DeliveryNoteItem
  • # Reads a single `Document` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `Document`.
  • document(id: ID!): Document
  • # Reads a single `DocumentCategory` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentCategory`.
  • documentCategory(id: ID!): DocumentCategory
  • # Reads a single `DocumentCategoryObjectInstance` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentCategoryObjectInstance`.
  • documentCategoryObjectInstance(id: ID!): DocumentCategoryObjectInstance
  • # Reads a single `DocumentComment` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentComment`.
  • documentComment(id: ID!): DocumentComment
  • # Reads a single `DocumentCommentLike` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentCommentLike`.
  • documentCommentLike(id: ID!): DocumentCommentLike
  • # Reads a single `DocumentCommentSeen` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentCommentSeen`.
  • documentCommentSeen(id: ID!): DocumentCommentSeen
  • # Reads a single `DocumentRecurringPayment` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentRecurringPayment`.
  • documentRecurringPayment(id: ID!): DocumentRecurringPayment
  • # Reads a single `DocumentTag` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentTag`.
  • documentTag(id: ID!): DocumentTag
  • # Reads a single `DocumentVersion` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentVersion`.
  • documentVersion(id: ID!): DocumentVersion
  • # Reads a single `DocumentWorkflow` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentWorkflow`.
  • documentWorkflow(id: ID!): DocumentWorkflow
  • # Reads a single `DocumentWorkflowState` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentWorkflowState`.
  • documentWorkflowState(id: ID!): DocumentWorkflowState
  • # Reads a single `DocumentWorkflowStep` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `DocumentWorkflowStep`.
  • documentWorkflowStep(id: ID!): DocumentWorkflowStep
  • # Reads a single `Export` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `Export`.
  • export(id: ID!): Export
  • # Reads a single `ExportDocument` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ExportDocument`.
  • exportDocument(id: ID!): ExportDocument
  • # Reads a single `GeneralLedgerAccount` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `GeneralLedgerAccount`.
  • generalLedgerAccount(id: ID!): GeneralLedgerAccount
  • # Reads a single `Invoice` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `Invoice`.
  • invoice(id: ID!): Invoice
  • # Reads a single `InvoiceAccountingItem` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceAccountingItem`.
  • invoiceAccountingItem(id: ID!): InvoiceAccountingItem
  • # Reads a single `InvoiceAccountingItem35A` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceAccountingItem35A`.
  • invoiceAccountingItem35A(id: ID!): InvoiceAccountingItem35A
  • # Reads a single `InvoiceAccountingItemCostCenter` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceAccountingItemCostCenter`.
  • invoiceAccountingItemCostCenter(id: ID!): InvoiceAccountingItemCostCenter
  • # Reads a single `InvoiceAccountingItemCostUnit` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceAccountingItemCostUnit`.
  • invoiceAccountingItemCostUnit(id: ID!): InvoiceAccountingItemCostUnit
  • # Reads a single `InvoiceCostCenter` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceCostCenter`.
  • invoiceCostCenter(id: ID!): InvoiceCostCenter
  • # Reads a single `InvoiceCostUnit` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceCostUnit`.
  • invoiceCostUnit(id: ID!): InvoiceCostUnit
  • # Reads a single `InvoiceDeliveryNote` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceDeliveryNote`.
  • invoiceDeliveryNote(id: ID!): InvoiceDeliveryNote
  • # Reads a single `InvoiceItem` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `InvoiceItem`.
  • invoiceItem(id: ID!): InvoiceItem
  • # Reads a single `MoneyAccount` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `MoneyAccount`.
  • moneyAccount(id: ID!): MoneyAccount
  • # Reads a single `MoneyTransaction` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `MoneyTransaction`.
  • moneyTransaction(id: ID!): MoneyTransaction
  • # Reads a single `ObjectClassProp` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ObjectClassProp`.
  • objectClassProp(id: ID!): ObjectClassProp
  • # Reads a single `ObjectInstance` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `ObjectInstance`.
  • objectInstance(id: ID!): ObjectInstance
  • # Reads a single `OpHealthCheck` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `OpHealthCheck`.
  • opHealthCheck(id: ID!): OpHealthCheck
  • # Reads a single `PartnerAccount` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `PartnerAccount`.
  • partnerAccount(id: ID!): PartnerAccount
  • # Reads a single `PartnerCompany` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `PartnerCompany`.
  • partnerCompany(id: ID!): PartnerCompany
  • # Reads a single `RealEstateObject` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `RealEstateObject`.
  • realEstateObject(id: ID!): RealEstateObject
  • # Reads a single `User` using its globally unique `ID`.
  • #
  • # Arguments
  • # id: The globally unique `ID` to be used in selecting a single
  • # `User`.
  • user(id: ID!): User
  • }

link Require by