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

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