summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/graphql/queries/agent_configurations.query.graphql
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
      }
    }
  }
}