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

approvals.query.graphql « queries « approvals « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 437ae578cd0e09d210fca3423e9afdc74febc32d (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"

query approvedBy($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    mergeRequest(iid: $iid) {
      id
      approvedBy {
        nodes {
          ...User
        }
      }
      userPermissions {
        canApprove
      }
    }
  }
}