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

updateStatus.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: 28a477351433797c5b928e104f0c3e031321959b (plain)
1
2
3
4
5
6
7
8
9
mutation($projectPath: ID!, $iid: String!, $healthStatus: HealthStatus) {
  updateIssue(input: { projectPath: $projectPath, iid: $iid, healthStatus: $healthStatus }) {
    issuable: issue {
      id
      healthStatus
    }
    errors
  }
}