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: b5a82b9428ec51831055b8cf436b6a3fa0ab228a (plain)
1
2
3
4
5
6
7
query getMergeRequestState($projectPath: ID!, $iid: String!) {
  workspace: project(fullPath: $projectPath) {
    issuable: mergeRequest(iid: $iid) {
      state
    }
  }
}