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