Welcome to mirror list, hosted at ThFree Co, Russian Federation.

merge_request_milestone.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0a16677cf2eb3cf771dabdd59acb2f99028bf5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "./milestone.fragment.graphql"

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