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

merge_request_reference.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7979a1ccb3ebd9c44386a9833ee8494436a03989 (plain)
1
2
3
4
5
6
7
8
9
10
query mergeRequestReference($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    __typename
    issuable: mergeRequest(iid: $iid) {
      __typename
      id
      reference(full: true)
    }
  }
}