OBJECT
ClientCompanyTag
A ClientCompanyTag belonging to a ClientCompany.
link GraphQL Schema definition
- type ClientCompanyTag implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID!
- : String!
- : CreatedTime
- # Reads a single `ClientCompany` that is related to this `ClientCompanyTag`.
- : ClientCompany!
- # 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!
- }
link Require by
- ClientCompanyTagsConnectionA connection to a list of `ClientCompanyTag` values.
- ClientCompanyTagsEdgeA `ClientCompanyTag` edge in the connection.
- CreateClientCompanyTagPayloadThe output of our `createClientCompanyTag` mutation.
- CreateDocumentTagPayloadThe output of our `createDocumentTag` mutation.
- DeleteClientCompanyTagPayloadThe output of our `deleteClientCompanyTag` mutation.
- DeleteDocumentTagPayloadThe output of our `deleteDocumentTag` mutation.
- DocumentTagA `DocumentTag` represents an assigned `CompanyTag` to a `Document`.
- QueryThe root query type which gives access points into the data universe.
- UpdateClientCompanyTagPayloadThe output of our `updateClientCompanyTag` mutation.