Skip to content

Add mutation to update boards

Felipe Cardozo requested to merge issue_218031_be_add_mutation into master

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

Merge request reports

Loading