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: 27a5cff12c7259bc077c43844d8e38732ada87b8 (plain)
1
2
3
4
5
6
7
mutation ($projectPath: ID!, $iid: String!, $healthStatus: HealthStatus) {
  updateIssue(input: { projectPath: $projectPath, iid: $iid, healthStatus: $healthStatus}) {
    issue {
      healthStatus
    }
  }
}