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

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