Skip to content

Allow to move issues between projects with GraphQL

Felipe Artur requested to merge issue-233479-Allow_move_issues_on_graphql into master

What does this MR do?

Add IssueMove mutation.

mutation example

mutation {
  issueMove(input: {
    iid: "8",
    projectPath: "root/test-1"
    targetProjectPath: "root/test-2"
  }) {
    issue {
      title
      description
    }
  }
}

related to #233479 (closed)

Edited by Felipe Artur

Merge request reports