Skip to content

Add search filter to issue boards resolver

Jan Provaznik requested to merge graphql_epic_board_search into master

What does this MR do?

When fetching epic swimlanes for an issue board (#229149 (closed)), user can pass various issue filters. One of filters used on current issue boards is a search param so only issues matching the search term are listed on the board.

No changelog is needed because epic groupings is still behind a feature flag.

Query example:

query {
  group(fullPath: "h5bp") {
    id
    board(id: "gid://gitlab/Board/2") {
        epics(issueFilters: {search: "foo"}) {
          nodes {
            id
            iid
            title
          }
        }
    }
  }
}

Related to #239002 (closed)

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • 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