OBJECT

DocumentCategory

A DocumentCategory is a category of a document.

link GraphQL Schema definition

  • type DocumentCategory implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • clientCompanyRowId: UUID!
  • documentType: DocumentType!
  • bookingType: BookingType
  • bookingCategory: String
  • description: String
  • emailAlias: EmailAlias
  • generalLedgerAccountRowId: UUID
  • internalNumberMode: DocumentCategoryInternalNumberMode
  • internalNumberMin: BigInt
  • updatedAt: UpdatedTime!
  • createdAt: CreatedTime!
  • # Reads a single `ClientCompany` that is related to this `DocumentCategory`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads a single `GeneralLedgerAccount` that is related to this
  • # `DocumentCategory`.
  • generalLedgerAccountByGeneralLedgerAccountRowId: GeneralLedgerAccount
  • # 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.
  • deletedDocumentsByCategoryRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeletedDocumentsOrderBy!],
  • condition: DeletedDocumentCondition
  • ): DeletedDocumentsConnection!
  • # Reads and enables pagination through a set of `Document`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `Document`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentsByCategoryRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentsOrderBy!],
  • condition: DocumentCondition
  • ): DocumentsConnection!
  • # 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.
  • documentCategoryObjectInstancesByDocumentCategoryRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCategoryObjectInstancesOrderBy!],
  • condition: DocumentCategoryObjectInstanceCondition
  • ): DocumentCategoryObjectInstancesConnection!
  • }