gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/issue_move_list.mutation.gr...

29 lines
504 B
GraphQL

#import "ee_else_ce/boards/graphql/issue.fragment.graphql"
mutation issueMoveList(
$projectPath: ID!
$iid: String!
$boardId: BoardID!
$fromListId: ID
$toListId: ID
$moveBeforeId: ID
$moveAfterId: ID
) {
issueMoveList(
input: {
projectPath: $projectPath
iid: $iid
boardId: $boardId
fromListId: $fromListId
toListId: $toListId
moveBeforeId: $moveBeforeId
moveAfterId: $moveAfterId
}
) {
issue {
...Issue
}
errors
}
}