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

update_issue_assignees.mutation.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24de5ea4fe34cf9dd097188f5785e36d02b43b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

mutation issueSetAssignees($iid: String!, $assigneeUsernames: [String!]!, $fullPath: ID!) {
  issuableSetAssignees: issueSetAssignees(
    input: { iid: $iid, assigneeUsernames: $assigneeUsernames, projectPath: $fullPath }
  ) {
    issuable: issue {
      id
      assignees {
        nodes {
          ...User
          ...UserAvailability
        }
      }
    }
  }
}