Add mutation to update boards
What does this MR do?
Adds a GraphQL mutation to update issue boards:
mutation {
updateBoard(input: {
id: "gid://gitlab/Board/4",
hideBacklogList: true,
hideClosedList: false
}) {
board {
name
hideClosedList
hideBacklogList
}
}
}
related to #218031 (comment 387881750)
Edited by Felipe Cardozo