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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql')
-rw-r--r--app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql b/app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql
deleted file mode 100644
index efeaf8fa372..00000000000
--- a/app/assets/javascripts/alert_management/graphql/mutations/alert_set_assignees.graphql
+++ /dev/null
@@ -1,15 +0,0 @@
-mutation($projectPath: ID!, $assigneeUsernames: [String!]!, $iid: String!) {
- alertSetAssignees(
- input: { iid: $iid, assigneeUsernames: $assigneeUsernames, projectPath: $projectPath }
- ) {
- errors
- alert {
- iid
- assignees {
- nodes {
- username
- }
- }
- }
- }
-}