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

search_iterations.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: 11d9dcea5730b22beeec36713d0995ca2417656d (plain)
1
2
3
4
5
6
7
8
9
10
query searchIterations($projectPath: ID!, $search: String, $id: ID) {
  project(fullPath: $projectPath) {
    iterations(title: $search, id: $id) {
      nodes {
        id
        title
      }
    }
  }
}