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

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