OBJECT

K8sNamespaceConnection

Description

Paginated list of K8sNamespace 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 K8sNamespaceConnection {
  • # List of K8sNamespace objects with additional pagination information. Use `nodes`
  • # if per-object cursors are not needed.
  • edges: [K8sNamespaceEdge!]!
  • # List of K8sNamespace objects.
  • nodes: [K8sNamespace!]!
  • # General information about this page of results.
  • pageInfo: PageInfo!
  • # Total number of K8sNamespace objects matching the request arguments.
  • count: Int!
  • # The aggregate persistent volume claims (PVC) across namespaces based on applied
  • # filters and pagination arguments.
  • aggregateK8sPvcs: Int!
  • # The aggregate workloads across namespaces based on applied filters and
  • # pagination arguments.
  • aggregateK8sWorkloads: Int!
  • }