OBJECT
ClusterGroupBy
Description
Cluster data with groupby info applied to it.
link GraphQL Schema definition
- type ClusterGroupBy {
- # The data groupby info.
- ClusterGroupByInfo! :
- # Paginated snappable data.
- #
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- # sortBy: Sort clusters by field.
- # sortOrder: Cluster sort order.
- (
- Int, :
- String, :
- Int, :
- String, :
- ClusterSortByEnum, :
- 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 occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- # groupBy: Group by field.
- (
- Int, :
- String, :
- Int, :
- String, :
- ClusterGroupByEnum! :
- ): [ClusterGroupBy!]!
- }
link Require by
- ClusterGroupByCluster data with groupby info applied to it.
- ClusterGroupByConnectionPaginated list of ClusterGroupBy objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- ClusterGroupByEdgeWrapper around the ClusterGroupBy object. This wrapper is used for pagination.