summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/queries/states/missing_branch.query.graphql
blob: 4d87d55f67165203344eda77c51fca6b4c439b65 (plain)
1
2
3
4
5
6
7
8
9
query missingBranchQuery($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    mergeRequest(iid: $iid) {
      id
      sourceBranchExists
    }
  }
}