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!
- : UUID!
- : UUID!
- : Int
- : Float
- : Float
- : UpdatedTime
- : CreatedTime
- : String
- # Reads a single `ClientCompanyTag` that is related to this `DocumentTag`.
- : ClientCompanyTag!
- # Reads a single `Document` that is related to this `DocumentTag`.
- : Document!
- }
link Require by
- CreateDocumentTagPayloadThe output of our `createDocumentTag` mutation.
- DeleteDocumentTagPayloadThe output of our `deleteDocumentTag` mutation.
- DocumentTagsConnectionA connection to a list of `DocumentTag` values.
- DocumentTagsEdgeA `DocumentTag` edge in the connection.
- QueryThe root query type which gives access points into the data universe.