OBJECT

RansomwareResultGroupedData

Description

Ransomware Investigation data with group by information applied to it.

link GraphQL Schema definition

  • type RansomwareResultGroupedData {
  • # Group by information.
  • groupByInfo: RansomwareResultGroupByInfo!
  • # Paginated ransomware 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.
  • # sortBy: Sort ransomware results by field.
  • ransomwareResults(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: RansomwareResultSortBy
  • ): RansomwareResultConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # groupBy: Group ransomware results by field.
  • ransomwareResultGroupedData(
  • groupBy: RansomwareResultGroupBy!
  • ): [RansomwareResultGroupedData!]!
  • }