OBJECT

MosaicSnapshotGroupByType

Description

Mosaic Snapshot data with group by info applied to it.

link GraphQL Schema definition

  • type MosaicSnapshotGroupByType {
  • # The data group by info.
  • groupByInfo: MosaicSnapshotGroupByInfo!
  • # Paginated snapshot 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 mosaic snapshots by field.
  • snapshots(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortOrder: SortOrder,
  • sortBy: MosaicSnapshotSortBy
  • ): MosaicSnapshotConnection!
  • # Provides further groupings for the data.
  • #
  • # Arguments
  • # groupBy: Group mosaic snapshots by field.
  • allSnapshotGroupBys(groupBy: MosaicSnapshotGroupBy!): [MosaicSnapshotGroupByType!]!
  • }