summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/queries/states/rebase.query.graphql
blob: 79ac87b7c3760dab800ea765f0eb37f2cbb27d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query rebaseQuery($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    mergeRequest(iid: $iid) {
      id
      rebaseInProgress
      targetBranch
      userPermissions {
        pushToSourceBranch
      }
      pipelines {
        nodes {
          id
          project {
            id
            fullPath
          }
        }
      }
    }
  }
}