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

cluster_agent.fragment.graphql « fragments « 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: 05d2525ab989f1334f9178040336614c80cec6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fragment ClusterAgentFragment on ClusterAgent {
  id
  name
  webPath
  connections {
    nodes {
      metadata {
        version
      }
    }
  }
  tokens {
    nodes {
      id
      lastUsedAt
    }
  }
}