OBJECT
CreateClientCompanyTagPayload
The output of our createClientCompanyTag mutation.
link GraphQL Schema definition
- type CreateClientCompanyTagPayload {
- # The exact same `clientMutationId` that was provided in the mutation input,
- # unchanged and unused. May be used by a client to track mutations.
- : String
- : ClientCompanyTag
- # Our root query field type. Allows us to run any query from our mutation payload.
- : Query
- # Reads a single `ClientCompany` that is related to this `ClientCompanyTag`.
- : ClientCompany!
- # An edge for our `ClientCompanyTag`. May be used by Relay 1.
- #
- # Arguments
- # orderBy: The method to use when ordering `ClientCompanyTag`.
- (: [ClientCompanyTagsOrderBy!]): ClientCompanyTagsEdge
- }