Allow to move issues between projects with GraphQL
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 Cardozo