OBJECT

DocumentTag

A DocumentTag represents an assigned CompanyTag to a Document.

link GraphQL Schema definition

  • type DocumentTag implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • clientCompanyTagRowId: UUID!
  • documentRowId: UUID!
  • page: Int
  • posX: Float
  • posY: Float
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • name: String
  • # Reads a single `ClientCompanyTag` that is related to this `DocumentTag`.
  • clientCompanyTagByClientCompanyTagRowId: ClientCompanyTag!
  • # Reads a single `Document` that is related to this `DocumentTag`.
  • documentByDocumentRowId: Document!
  • }