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

group_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: acc9bcd2015f4e093bc92a8dc52a48315afa9eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query groupLabels($fullPath: ID!, $searchTerm: String) {
  workspace: group(fullPath: $fullPath) {
    labels(searchTerm: $searchTerm, onlyGroupLabels: true) {
      nodes {
        id
        title
        color
        description
      }
    }
  }
}