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