summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/labels_select_widget/graphql/group_labels.query.graphql
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
      }
    }
  }
}