OBJECT

AnomalyResultGroupedData

Description

Anomaly result data with group by information applied to it.

link GraphQL Schema definition

  • type AnomalyResultGroupedData {
  • # Group by information.
  • groupByInfo: AnomalyResultGroupByInfo!
  • # Paginated anomaly result 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.
  • # sortOrder: Sorting order for the results.
  • # sortBy: Sort anomaly results by field.
  • # filter: Filter anomaly results by input.
  • anomalyResults(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortOrder: SortOrder,
  • sortBy: AnomalyResultSortBy,
  • filter: AnomalyResultFilterInput
  • ): AnomalyResultConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # groupBy: Group anomaly results by field.
  • anomalyResultGroupedData(
  • groupBy: AnomalyResultGroupBy!
  • ): [AnomalyResultGroupedData!]!
  • }