OBJECT

NfAnomalyResultGroupedData

Description

Non-filesystem anomaly result data with group by information applied to it.

link GraphQL Schema definition

  • type NfAnomalyResultGroupedData {
  • # Group by information.
  • groupByInfo: NfAnomalyResultGroupByInfo!
  • # 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 non-filesystem anomaly results by field.
  • # filter: Filter non-filesystem anomaly results by input.
  • nfAnomalyResults(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortOrder: SortOrder,
  • sortBy: NfAnomalyResultSortBy,
  • filter: NfAnomalyResultFilterInput
  • ): NfAnomalyResultConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # groupBy: Group non-filesystem anomaly results by field.
  • nfAnomalyResultGroupedData(
  • groupBy: NfAnomalyResultGroupBy!
  • ): [NfAnomalyResultGroupedData!]!
  • }