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

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

query groupLabels($fullPath: ID!, $searchTerm: String) {
  workspace: group(fullPath: $fullPath) {
    id
    labels(searchTerm: $searchTerm, onlyGroupLabels: true, includeAncestorGroups: true) {
      nodes {
        ...Label
      }
    }
  }
}