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

alert_todo_create.mutation.graphql « mutations « graphql « alert_details « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc961b5eb90274eb514a32953cd832eda32e86c1 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/alert_detail_item.fragment.graphql"

mutation alertTodoCreate($projectPath: ID!, $iid: String!) {
  alertTodoCreate(input: { iid: $iid, projectPath: $projectPath }) {
    errors
    alert {
      ...AlertDetailItem
    }
  }
}