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

new_ready_to_merge.query.graphql « states « queries « 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: 3b34be73c15f7e1babc7d97babcd18d9221ccbbf (plain)
1
2
3
4
5
6
7
8
9
query readyToMergeQuery($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $iid) {
      userPermissions {
        canMerge
      }
    }
  }
}