Skip to content

allConnectedClusters

List all connected clusters.

Arguments

Argument Type Description
clusterFilterArg ClusterTypeEnum Specification to filter cluster based on type.

Returns

[DataLocationSupportedCluster!]!

Sample

query {
  allConnectedClusters {
    apiVersion
    isAirGapped
    isArchived
    name
    uuid
    version
  }
}
{}
{
  "data": {
    "allConnectedClusters": [
      {
        "apiVersion": "example-string",
        "isAirGapped": true,
        "isArchived": true,
        "name": "example-string",
        "uuid": "example-string",
        "version": "example-string"
      }
    ]
  }
}