OBJECT

TaskDetailGroupBy

Description

Task detail with groupby info applied to it.

link GraphQL Schema definition

  • type TaskDetailGroupBy {
  • # The data groupby info.
  • groupByInfo: TaskDetailGroupByInfo!
  • # Paginated task detail 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 task detail by field.
  • # sortOrder: Task detail sort order.
  • taskDetailConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: TaskDetailSortByEnum,
  • sortOrder: SortOrder
  • ): TaskDetailConnection!
  • # Arguments
  • # groupBy: Group task detail by a field.
  • taskDetailGroupBy(groupBy: TaskDetailGroupByEnum!): [TaskDetailGroupBy!]!
  • }