summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/mutations/alert_todo_create.mutation.graphql
blob: ac9858c104f233b22071c81cb14aa6227f28fb82 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/detail_item.fragment.graphql"

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