Skip to content

Search issues in graphQl by milestone and assignees

Jarka Košanová requested to merge 197227-milestone-tab-async into master

What does this MR do?

It adds support to graphQL API for filtering issues by milestones (milestone_title) and assignees (asisgne_username, assignee_id)

GraohQL query example

project(fullPath: "flightjs/flight") {
  name
  issues(state: opened, milestoneTitle: "Sprint", assigneeId: "none") {
    edges {
      node {
        iid
        title
      }
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

This is backend part of #197227 (closed)

Edited by Felipe Cardozo

Merge request reports