OBJECT

ClusterConnection

Description

Paginated list of Cluster objects. Each page of the results will include at most 1000 entries. Query the pageInfo.hasNextPage field to know whether all objects were returned.

link GraphQL Schema definition

  • type ClusterConnection {
  • # List of Cluster objects with additional pagination information. Use `nodes` if
  • # per-object cursors are not needed.
  • edges: [ClusterEdge!]!
  • # List of Cluster objects.
  • nodes: [Cluster!]!
  • # General information about this page of results.
  • pageInfo: PageInfo!
  • # Total number of Cluster objects matching the request arguments.
  • count: Int!
  • # Aggregate statistics across Clusters with respect for the applied filters and
  • # pagination arguments.
  • aggregateClusterStatistics: ClusterStatsAggregation!
  • # Aggregate Rubrik clusters' health information based on filters and pagination
  • # arguments.
  • aggregateClusterHealth: ClusterHealthAggregation!
  • }