OBJECT

DocumentCategoryObjectInstance

Connects a document category to an object instance.

link GraphQL Schema definition

  • type DocumentCategoryObjectInstance implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • documentCategoryRowId: UUID!
  • objectInstanceRowId: UUID!
  • createdBy: TrimmedText!
  • createdAt: Datetime!
  • # Reads a single `DocumentCategory` that is related to this
  • # `DocumentCategoryObjectInstance`.
  • documentCategoryByDocumentCategoryRowId: DocumentCategory!
  • # Reads a single `ObjectInstance` that is related to this
  • # `DocumentCategoryObjectInstance`.
  • objectInstanceByObjectInstanceRowId: ObjectInstance!
  • }