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

get_state.query.graphql « 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: 488397e7735670d209c13ac06a5bd9b65b453df5 (plain)
1
2
3
4
5
6
7
8
query getState($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $iid) {
      title
      workInProgress
    }
  }
}