GraphQL reference

DeleteIssueInput

Input

Autogenerated input type of DeleteIssue

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

Example

mutation DeleteIssue(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteIssueInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteIssue(input: $input) {
        errors
      }
    }
  }
}

Fields

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