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

updateAssignees.mutation.graphql « queries « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ead95a38017d82c0ca024f7713136fef658ff91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mutation issueSetAssignees($iid: String!, $assigneeUsernames: [String!]!, $projectPath: ID!) {
  issueSetAssignees(
    input: { iid: $iid, assigneeUsernames: $assigneeUsernames, projectPath: $projectPath }
  ) {
    issue {
      assignees {
        nodes {
          username
          id
          name
          webUrl
          avatarUrl
        }
      }
    }
  }
}