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

auto_merge_failed.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: 2fe0d174b67e6dd4de38170cd017e6addffb270a (plain)
1
2
3
4
5
6
7
query autoMergeFailedQuery($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $iid) {
      mergeError
    }
  }
}