OBJECT

ClusterConnection

Description

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

link GraphQL Schema definition

  • type ClusterConnection {
  • # Aggregate Rubrik clusters' health information based on filters and pagination
  • # arguments.
  • aggregateClusterHealth: ClusterHealthAggregation! @deprecated( reason: "This field is deprecated because it is no longer used." )
  • # Aggregate statistics across Clusters with respect for the applied filters and
  • # pagination arguments.
  • aggregateClusterStatistics: ClusterStatsAggregation!
  • # Total number of Cluster objects matching the request arguments.
  • count: Int!
  • # 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 result page.
  • pageInfo: PageInfo!
  • }