summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/alert_details/graphql/mutations/alert_todo_create.mutation.graphql
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
    }
  }
}