Skip to content

Add epics filters to epic board lists

Jan Provaznik requested to merge eboard_filters into master

What does this MR do?

Allows passing epic_filters attribute when to the epic board list which is then used for evaluating epicsCount field. Sample query:

query {
  group(fullPath: "h5bp") {
    id
    epicBoards {
      nodes {
        id
        name
        lists(id: "gid://gitlab/Boards::EpicList/3", epicFilters: {labelName: ["Afterbalt"]}) {
          nodes {
            id
            epicsCount
          }
        }
      }
    }
  }
}

Related to #328875 (closed)

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Jan Provaznik

Merge request reports