OBJECT

SnappableGroupBy

Description

Snappable data with groupby info applied to it.

link GraphQL Schema definition

  • type SnappableGroupBy {
  • # The data groupby info.
  • groupByInfo: SnappableGroupByInfo!
  • # Paginated snappable 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 workloads by field.
  • snappableConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortOrder: SortOrder,
  • sortBy: SnappableSortByEnum
  • ): SnappableConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # groupBy: Group workloads by field.
  • snappableGroupBy(groupBy: SnappableGroupByEnum!): [SnappableGroupBy!]!
  • }