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