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

get_mr_assignees.query.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: 53f7381760e39539d7da4b266357f3e42544e56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

query getMrAssignees($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    issuable: mergeRequest(iid: $iid) {
      id
      assignees {
        nodes {
          ...User
          ...UserAvailability
        }
      }
    }
  }
}