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

agent_configurations.query.graphql « queries « graphql « clusters_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40b613370243fdc442cc237a69e373c9f8597428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query agentConfigurations($projectPath: ID!) {
  project(fullPath: $projectPath) {
    agentConfigurations {
      nodes {
        agentName
      }
    }

    clusterAgents {
      nodes {
        name
      }
    }
  }
}