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

conflicts.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: a4c420705303236000e771019c8236a6105934e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query workInProgress($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    mergeRequest(iid: $iid) {
      id
      shouldBeRebased
      sourceBranchProtected
      userPermissions {
        pushToSourceBranch
      }
    }
  }
}