GraphQL reference

ArchiveIssueInput

Input

Autogenerated input type of ArchiveIssue

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

Example

mutation ArchiveIssue(
  $organizationId: ID!
  $projectId: ID!
  $input: ArchiveIssueInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      archiveIssue(input: $input) {
        errors
      }
    }
  }
}

Fields

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