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

alert_set_assignees.mutation.graphql « mutations « graphql « alert_details « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33091f1ba5e27559941c6b27f408ebcf11948621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import "~/graphql_shared/fragments/alert_note.fragment.graphql"
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

mutation alertSetAssignees($fullPath: ID!, $assigneeUsernames: [String!]!, $iid: String!) {
  issuableSetAssignees: alertSetAssignees(
    input: { iid: $iid, assigneeUsernames: $assigneeUsernames, projectPath: $fullPath }
  ) {
    errors
    issuable: alert {
      iid
      assignees {
        nodes {
          ...User
          ...UserAvailability
        }
      }
      notes {
        nodes {
          ...AlertNote
        }
      }
    }
  }
}