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

runner_managers.query.graphql « show « graphql « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc16267e619b6e2ffc3f258a1822bbf49555c9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/ci/runner/graphql/show/runner_manager.fragment.graphql"

query getRunnerManagers($runnerId: CiRunnerID!) {
  runner(id: $runnerId) {
    id
    managers {
      count
      nodes {
        ...CiRunnerManager
      }
    }
  }
}