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

get_state.query.graphql « queries « merge_requests « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1edb37a228da3203d8fb0c18b94d5ac9927bd471 (plain)
1
2
3
4
5
6
7
8
9
query getMergeRequestState($projectPath: ID!, $iid: String!) {
  workspace: project(fullPath: $projectPath) {
    id
    issuable: mergeRequest(iid: $iid) {
      id
      state
    }
  }
}