summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/labels/labels_select_widget/graphql/project_labels.query.graphql
blob: a7c24620aad710b1875f5327d966401b68d7ef8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "~/graphql_shared/fragments/label.fragment.graphql"

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