GraphQL reference

DeleteCommentThreadInput

Input

Autogenerated input type of DeleteCommentThread

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

Example

mutation DeleteCommentThread(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteCommentThreadInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteCommentThread(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
commentThreadIdID!
deletedAtISO8601DateTime!
mutationMetadataJSON
updatedAtISO8601DateTime!