summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues_list/queries/search_labels.query.graphql
blob: de884e1221cb71772ce3590ff6d6f224d9242cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query searchLabels($projectPath: ID!, $search: String) {
  project(fullPath: $projectPath) {
    labels(searchTerm: $search, includeAncestorGroups: true) {
      nodes {
        id
        color
        textColor
        title
      }
    }
  }
}