summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql
blob: efeaf8fa3726c9a607bcdc9a0a4e46c5b4b0fdca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mutation($projectPath: ID!, $assigneeUsernames: [String!]!, $iid: String!) {
  alertSetAssignees(
    input: { iid: $iid, assigneeUsernames: $assigneeUsernames, projectPath: $projectPath }
  ) {
    errors
    alert {
      iid
      assignees {
        nodes {
          username
        }
      }
    }
  }
}