Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search_labels.query.graphql « queries « issues_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}