OBJECT
AnomalyResultGroupedData
Description
Anomaly result data with group by information applied to it.
link GraphQL Schema definition
- type AnomalyResultGroupedData {
- # Group by information.
- AnomalyResultGroupByInfo! :
- # Paginated anomaly result 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.
- # sortOrder: Sorts the order of results.
- # sortBy: Sort anomaly results by field.
- # filter: Filter anomaly results by input.
- (
- Int, :
- String, :
- Int, :
- String, :
- SortOrder, :
- AnomalyResultSortBy, :
- AnomalyResultFilterInput :
- ): AnomalyResultConnection!
- # Provides further groupings for the data.
- #
- # Arguments
- # groupBy: Group anomaly results by field.
- (
- AnomalyResultGroupBy! :
- ): [AnomalyResultGroupedData!]!
- }
link Require by
- AnomalyResultGroupedDataAnomaly result data with group by information applied to it.
- AnomalyResultGroupedDataConnectionPaginated list of AnomalyResultGroupedData objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- AnomalyResultGroupedDataEdgeWrapper around the AnomalyResultGroupedData object. This wrapper is used for pagination.