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