OBJECT

ClusterGroupBy

Description

Cluster data with groupby info applied to it.

link GraphQL Schema definition

  • type ClusterGroupBy {
  • # The data groupby info.
  • groupByInfo: ClusterGroupByInfo!
  • # Paginated snappable data.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # sortBy: Sort clusters by field.
  • # sortOrder: Cluster sort order.
  • clusterConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: ClusterSortByEnum,
  • sortOrder: SortOrder
  • ): ClusterConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # groupBy: Group by field.
  • clusterGroupBy(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • groupBy: ClusterGroupByEnum!
  • ): [ClusterGroupBy!]!
  • }