Skip to content

Allow to update epic boards lists with GraphQL

Felipe Artur requested to merge issue_321770-add_graphql_mutation into master

What does this MR do?

Add GraphQL mutation to update board epic lists

Sample query

mutation updateEpicLIst { 
    updateEpicBoardList(input: {
    listId: "gid://gitlab/Boards::EpicList/6",
    collapsed: true,
    position: 1
  } ) {
    list {
      id
      collapsed
      position
    }
  }
}

related to #321770 (closed)

Edited by Felipe Artur

Merge request reports