Skip to content

Add GraphQL query to fetch single epic board list

Rajat Jain requested to merge epic-board-list-resolver into master

What does this MR do and why?

Related to #355947 (closed)

Adds the ability to find an epic board list by gid. This is needed to fetch list metadata like totalWeight as a deferred query.

Example query

query {
  epicBoardList(id: "gid://gitlab/Boards::EpicList/3", epicFilters: {}) {
    id
    metadata {
      totalWeight
    }
  }
}

Screenshots or screen recordings

How to set up and validate locally

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Eugenia Grieff

Merge request reports