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

update_merge_request_milestone.mutation.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: 368f06fac7f0f345b32ff111e9bd3ee5684ca334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mutation mergeRequestSetMilestone($fullPath: ID!, $iid: String!, $attributeId: ID) {
  issuableSetAttribute: mergeRequestSetMilestone(
    input: { projectPath: $fullPath, iid: $iid, milestoneId: $attributeId }
  ) {
    __typename
    errors
    issuable: mergeRequest {
      __typename
      id
      attribute: milestone {
        title
        id
        state
      }
    }
  }
}