summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/graphql/queries/agent_configurations.query.graphql
blob: 9a24cec5a9c338bfa51db4195f961d3f6c863ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query agentConfigurations($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    agentConfigurations {
      nodes {
        agentName
      }
    }

    clusterAgents {
      nodes {
        id
        name
      }
    }
  }
}