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

alert_todo_create.graphql « mutations « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdf3d763302105dead3aff3b0a505b116b7bea1c (plain)
1
2
3
4
5
6
7
8
9
10
11
mutation($projectPath: ID!, $iid: String!) {
  alertTodoCreate(input: { iid: $iid, projectPath: $projectPath }) {
    errors
    alert {
      iid
    }
    todo {
      id
    }
  }
}