GraphQL reference

MoveIssueFromNewToDraftInput

Input

Autogenerated input type of MoveIssueFromNewToDraft

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

Example

mutation MoveIssueFromNewToDraft(
  $organizationId: ID!
  $projectId: ID!
  $input: MoveIssueFromNewToDraftInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      moveIssueFromNewToDraft(input: $input) {
        errors
      }
    }
  }
}

Fields

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