Skip to content

Include group-level work items in IssuesFinder

Heinrich Lee Yu requested to merge 392812-group-level-issues-finder into master

What does this MR do and why?

When namespace_level_work_items is enabled, include group-level work items in IssuesFinder / WorkItemsFinder when querying for epic types.

This is the backend portion of #392812 (closed) for the epic list.

How to set up and validate locally

  1. Enable namespace_level_work_items feature flag

  2. Visit /groups/<path>/-/work_items to create epics

  3. Test with a GraphQL query like:

    query {
      group(fullPath: "flightjs") {
        issues(types: [EPIC]) {
          nodes {
            id
            title
          }
        }
      }
    }

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 Heinrich Lee Yu

Merge request reports