Skip to content

Add includeSubepics argument to issue filters in GraphQL

Mario Celi requested to merge 338351-gql-issue-filter-subepics into master

What does this MR do and why?

Adds includeSubepics argument to issueResolver. This allows to match issues by epicId or any of the specified epic's children.

Example Query

{
  project(fullPath:"Flightjs/flight") {
    issues(epicId: "25", includeSubepics: true) {
      nodes {
        id
        title
      }
    }
  }
}

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

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

Related to #338351 (closed)

Merge request reports

Loading