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: dd80e89c8a7ec3761fd2c9c6ccba9ba54a7d1ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "~/graphql_shared/fragments/label.fragment.graphql"

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