summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/queries/states/rebase.query.graphql
blob: a8c7d2610bf3dfbd7c78d34a0c4b639ab26c7f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
query rebaseQuery($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $iid) {
      rebaseInProgress
      targetBranch
      userPermissions {
        pushToSourceBranch
      }
    }
  }
}