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!
- # The root query type must be a `Node` to work well with Relay 1 mutations. This
- # just resolves to `query`.
- : ID!
- # Fetches an object given its globally unique `ID`.
- #
- # Arguments
- # id: The globally unique `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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [AccountingCompaniesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [AccountingInstructionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [BankAccountsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [BankTransactionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ClientCompaniesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ClientCompanyCostCentersOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ClientCompanyCostUnitsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ClientCompanyPurchasesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ClientCompanyTagsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CompaniesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CompanyLocationsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CreditCardAccountsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CreditCardTransactionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CurrencyRatesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeletedDocumentsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeliveryNotesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeliveryNoteItemsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCategoriesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCategoryObjectInstancesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCommentsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCommentLikesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCommentSeensOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentMoneyTransactionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentRecurringPaymentsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentTagsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentVersionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentVersionFilesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentWorkflowsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentWorkflowStatesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentWorkflowStepsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ExportsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ExportDocumentsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [GeneralLedgerAccountsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [IdwellCrmTicketsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoicesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceAccountingItemsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceAccountingItem35AsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceAccountingItemCostCentersOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceAccountingItemCostUnitsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceCostCentersOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceCostUnitsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceDeliveryNotesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceItemsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [MoneyAccountsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [MoneyTransactionsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ObjectClassPropsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ObjectInstancesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [OpHealthChecksOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [PartnerAccountsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [PartnerCompaniesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [RealEstateObjectsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [UsersOrderBy!],
- : UserCondition
- ): UsersConnection
- # Arguments
- # clientCompanyRowId: [Not documented]
- (
- : UUID!
- ): AccountingCompany
- # Arguments
- # rowId: [Not documented]
- (: UUID!): AccountingInstruction
- # Arguments
- # rowId: [Not documented]
- (: UUID!): BankAccount
- # Arguments
- # rowId: [Not documented]
- (: UUID!): BankTransaction
- # Arguments
- # companyRowId: [Not documented]
- (: UUID!): ClientCompany
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ClientCompanyCostCenter
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ClientCompanyCostUnit
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ClientCompanyPurchase
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ClientCompanyTag
- # Arguments
- # rowId: [Not documented]
- (: UUID!): Company
- # Arguments
- # rowId: [Not documented]
- (: UUID!): CompanyLocation
- # Arguments
- # rowId: [Not documented]
- (: UUID!): CreditCardAccount
- # Arguments
- # rowId: [Not documented]
- (: UUID!): CreditCardTransaction
- # Arguments
- # date: [Not documented]
- # currency: [Not documented]
- (
- : Date!,
- : CurrencyCode!
- ): CurrencyRate
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DeletedDocument
- # Arguments
- # documentRowId: [Not documented]
- (: UUID!): DeliveryNote
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DeliveryNoteItem
- # Arguments
- # rowId: [Not documented]
- (: UUID!): Document
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentCategory
- # Arguments
- # documentCategoryRowId: [Not documented]
- # objectInstanceRowId: [Not documented]
- (
- : UUID!,
- : UUID!
- ): DocumentCategoryObjectInstance
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentComment
- # Arguments
- # documentCommentRowId: [Not documented]
- # likedBy: [Not documented]
- (
- : UUID!,
- : UUID!
- ): DocumentCommentLike
- # Arguments
- # documentCommentRowId: [Not documented]
- # seenBy: [Not documented]
- (
- : UUID!,
- : UUID!
- ): DocumentCommentSeen
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentRecurringPayment
- # Arguments
- # clientCompanyTagRowId: [Not documented]
- # documentRowId: [Not documented]
- (
- : UUID!,
- : UUID!
- ): DocumentTag
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentVersion
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentWorkflow
- # Arguments
- # documentRowId: [Not documented]
- (
- : UUID!
- ): DocumentWorkflowState
- # Arguments
- # rowId: [Not documented]
- (: UUID!): DocumentWorkflowStep
- # Arguments
- # rowId: [Not documented]
- (: UUID!): Export
- # Arguments
- # exportRowId: [Not documented]
- # documentRowId: [Not documented]
- (
- : UUID!,
- : UUID!
- ): ExportDocument
- # Arguments
- # rowId: [Not documented]
- (: UUID!): GeneralLedgerAccount
- # Arguments
- # documentRowId: [Not documented]
- (: UUID!): Invoice
- # Arguments
- # rowId: [Not documented]
- (: UUID!): InvoiceAccountingItem
- # Arguments
- # invoiceAccountingItemRowId: [Not documented]
- (
- : UUID!
- ): InvoiceAccountingItem35A
- # Arguments
- # rowId: [Not documented]
- (
- : UUID!
- ): InvoiceAccountingItemCostCenter
- # Arguments
- # rowId: [Not documented]
- (
- : UUID!
- ): InvoiceAccountingItemCostUnit
- # Arguments
- # rowId: [Not documented]
- (: UUID!): InvoiceCostCenter
- # Arguments
- # rowId: [Not documented]
- (: UUID!): InvoiceCostUnit
- # Arguments
- # invoiceDocumentRowId: [Not documented]
- # deliveryNoteDocumentRowId: [Not documented]
- (
- : UUID!,
- : UUID!
- ): InvoiceDeliveryNote
- # Arguments
- # rowId: [Not documented]
- (: UUID!): InvoiceItem
- # Arguments
- # rowId: [Not documented]
- (: UUID!): MoneyAccount
- # Arguments
- # rowId: [Not documented]
- (: UUID!): MoneyTransaction
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ObjectClassProp
- # Arguments
- # rowId: [Not documented]
- (: UUID!): ObjectInstance
- # Arguments
- # clientCompanyRowId: [Not documented]
- (
- : UUID!
- ): OpHealthCheck
- # Arguments
- # rowId: [Not documented]
- (: UUID!): PartnerAccount
- # Arguments
- # rowId: [Not documented]
- (: UUID!): PartnerCompany
- # Arguments
- # rowId: [Not documented]
- (: UUID!): RealEstateObject
- # Arguments
- # rowId: [Not documented]
- (: UUID!): User
- # Currently authenticated `ClientCompany`.
- : ClientCompany
- # Currently authenticated `ClientCompany.company_id`.
- : 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.
- (
- : String,
- : Boolean,
- : Boolean,
- : String,
- : FilterDocumentsDateFilterType,
- : Date,
- : Date,
- : Float,
- : Float,
- : FilterDocumentsExportStatus,
- : FilterDocumentsPaidStatus,
- : Boolean,
- : [DocumentType],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : Boolean,
- : Boolean,
- : Boolean,
- : Boolean,
- : [UUID],
- : Boolean,
- : [InvoiceCompletenessDetail],
- : Boolean,
- : Boolean,
- : Boolean,
- : UUID,
- : [UUID],
- : [UUID],
- : Boolean,
- : OtherDocumentContractType,
- : Boolean,
- : [UUID],
- : [FilterDocumentsOrderBy],
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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]
- (
- : String,
- : Boolean,
- : Boolean,
- : String,
- : FilterDocumentsDateFilterType,
- : Date,
- : Date,
- : Float,
- : Float,
- : FilterDocumentsExportStatus,
- : FilterDocumentsPaidStatus,
- : Boolean,
- : [DocumentType],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : [UUID],
- : Boolean,
- : Boolean,
- : Boolean,
- : Boolean,
- : Boolean,
- : [UUID],
- : Boolean,
- : [InvoiceCompletenessDetail],
- : Boolean,
- : Boolean,
- : Boolean,
- : UUID,
- : [UUID],
- : [UUID],
- : Boolean,
- : OtherDocumentContractType,
- : Boolean,
- : [UUID],
- : [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.
- (
- : String,
- : Boolean,
- : [UUID],
- : MoneyTransactionType,
- : Date,
- : Date,
- : Float,
- : Float,
- : Int,
- : Int,
- : Boolean,
- : Boolean,
- : Boolean,
- : [UUID],
- : Boolean,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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.
- (
- : String,
- : OpenItemsType,
- : FilterOpenItemsOrderBy,
- : [UUID],
- : [UUID],
- : Float,
- : Float,
- : FilterDocumentsDateFilterType,
- : Date,
- : Date,
- : [UUID],
- : [UUID],
- : [UUID],
- : [UUID],
- : Boolean,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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]
- (
- : String,
- : OpenItemsType,
- : FilterOpenItemsOrderBy,
- : [UUID],
- : [UUID],
- : Float,
- : Float,
- : FilterDocumentsDateFilterType,
- : Date,
- : Date,
- : [UUID],
- : [UUID],
- : [UUID],
- : [UUID],
- : 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.
- (
- : String,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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.
- (
- : String!,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor
- ): ObjectClassPropsConnection!
- # Arguments
- # rowId: [Not documented]
- (: 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.
- (
- : String!,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor
- ): ObjectInstancesConnection!
- # `RealEstateObject` with a given number.
- #
- # Arguments
- # objectNo: [Not documented]
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: 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`.
- (: ID!): User
- }
link Require by
- CreateClientCompanyPurchasePayloadThe output of our `createClientCompanyPurchase` mutation.
- CreateClientCompanyTagPayloadThe output of our `createClientCompanyTag` mutation.
- CreateDocumentCommentPayloadThe output of our `createDocumentComment` mutation.
- CreateDocumentTagPayloadThe output of our `createDocumentTag` mutation.
- DeleteClientCompanyPurchasePayloadThe output of our `deleteClientCompanyPurchase` mutation.
- DeleteClientCompanyTagPayloadThe output of our `deleteClientCompanyTag` mutation.
- DeleteDocumentCommentPayloadThe output of our `deleteDocumentComment` mutation.
- DeleteDocumentTagPayloadThe output of our `deleteDocumentTag` mutation.
- MarkDocumentsAsBookedPayloadThe output of our `markDocumentsAsBooked` mutation.
- QueryThe root query type which gives access points into the data universe.
- SetInvoiceAccountingItem35AKindPayloadThe output of our `setInvoiceAccountingItem35AKind` mutation.
- SetInvoiceAccountingItem35ANetPayloadThe output of our `setInvoiceAccountingItem35ANet` mutation.
- SetInvoiceAccountingItem35ATotalPayloadThe output of our `setInvoiceAccountingItem35ATotal` mutation.
- UpdateClientCompanyPurchasePayloadThe output of our `updateClientCompanyPurchase` mutation.
- UpdateClientCompanyTagPayloadThe output of our `updateClientCompanyTag` mutation.
- UpdateDocumentPayloadThe output of our `updateDocument` mutation.
- UpdateInvoiceDatePayloadThe output of our `updateInvoiceDate` mutation.
- UpdateInvoiceDeliveryNoteNumbersPayloadThe output of our `updateInvoiceDeliveryNoteNumbers` mutation.
- UpdateInvoiceInternalNumberPayloadThe output of our `updateInvoiceInternalNumber` mutation.
- UpdateInvoiceNumberPayloadThe output of our `updateInvoiceNumber` mutation.
- UpdateInvoiceOpenItemsNumberPayloadThe output of our `updateInvoiceOpenItemsNumber` mutation.
- UpdateInvoiceOrderDatePayloadThe output of our `updateInvoiceOrderDate` mutation.
- UpdateInvoiceOrderNumberPayloadThe output of our `updateInvoiceOrderNumber` mutation.
- UpdateInvoicePaymentStatusPayloadThe output of our `updateInvoicePaymentStatus` mutation.
- UpdateInvoicePurchasePayloadThe output of our `updateInvoicePurchase` mutation.
- UpdatePartnerCompanyPayloadThe output of our `updatePartnerCompany` mutation.