summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/graphql/fragments/cluster_agent.fragment.graphql
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
    }
  }
}