GraphQL reference

UntagCommentThreadInput

Input

Autogenerated input type of UntagCommentThread

mutation { organization(id: $organizationId) { project(id: $projectId) { untagCommentThread } } }

Example

mutation UntagCommentThread(
  $organizationId: ID!
  $projectId: ID!
  $input: UntagCommentThreadInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      untagCommentThread(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
commentThreadTagIdID!
mutationMetadataJSON