summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/labels_select_widget/graphql/project_labels.query.graphql
blob: dc39220487d63d2f3e8843a2732860939efa64fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query projectLabels($fullPath: ID!, $searchTerm: String) {
  workspace: project(fullPath: $fullPath) {
    labels(searchTerm: $searchTerm, includeAncestorGroups: true) {
      nodes {
        id
        title
        color
        description
      }
    }
  }
}