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

alert_set_assignees.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: 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
        }
      }
    }
  }
}