OBJECT
TaskDetailGroupBy
Description
Task detail with groupby info applied to it.
link GraphQL Schema definition
- type TaskDetailGroupBy {
- # The data groupby info.
- TaskDetailGroupByInfo! :
- # Paginated task detail data.
- #
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- # sortBy: Sort task detail by field.
- # sortOrder: Task detail sort order.
- (
- Int, :
- String, :
- Int, :
- String, :
- TaskDetailSortByEnum, :
- SortOrder :
- ): TaskDetailConnection!
- # Arguments
- # groupBy: Group task detail by a field.
- TaskDetailGroupByEnum!): [TaskDetailGroupBy!]! ( :
- }
link Require by
- TaskDetailGroupByTask detail with groupby info applied to it.
- TaskDetailGroupByConnectionPaginated list of TaskDetailGroupBy objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- TaskDetailGroupByEdgeWrapper around the TaskDetailGroupBy object. This wrapper is used for pagination.