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

environment_cluster_agent.query.graphql « queries « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19374ae7a8157fec7dca22cf7ee9c15698931f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query getEnvironmentClusterAgent($projectFullPath: ID!, $environmentName: String) {
  project(fullPath: $projectFullPath) {
    id
    environment(name: $environmentName) {
      id
      kubernetesNamespace
      clusterAgent {
        id
        name
        webPath
        tokens {
          nodes {
            id
            lastUsedAt
          }
        }
      }
    }
  }
}