Skip to content

Add issues to graphQL group endpoint

Jarka Košanová requested to merge 197227-graphql-group-milestones into master

What does this MR do?

This MR adds issues to group endpoint in graphQL.

Query example

{
  group(fullPath: "flightjs") {
    name
    issues(state: opened, milestoneTitle: "group-10.0", assigneeId: "none") {
      edges {
        node {
          iid
          title
        }
      }
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Backend for #197227 (closed)

Merge request reports