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

merge_request_labels.query.graphql « graphql « labels_select_widget « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0cdfd91658a96717d596ad9f41ed2e4790333a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "~/graphql_shared/fragments/label.fragment.graphql"

query mergeRequestLabels($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: mergeRequest(iid: $iid) {
      id
      labels {
        nodes {
          ...Label
        }
      }
    }
  }
}