summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_milestone.query.graphql
blob: 26bf901babff79e5d69a3ac11629ca83c291d9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "./milestone.fragment.graphql"

query mergeRequestMilestone($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: mergeRequest(iid: $iid) {
      id
      attribute: milestone {
        ...MilestoneFragment
      }
    }
  }
}