Interface TaskQuery.ICustomFieldGroupBy

Enclosing class:
TaskQuery

public static interface TaskQuery.ICustomFieldGroupBy
Provides grouping functionality for custom fields of ITask.

Example:

TaskQuery.create().groupBy().customField().stringField("CreditGroup").aggregate().countRows();

API:
This is a public API.
  • Method Details

    • stringField

      TaskQuery.GroupByQuery stringField(String fieldName)

      Groups the result of the query by the custom String field fieldName.

      Parameters:
      fieldName - Name of the custom String field.
      Returns:
      Query for further composition.
      API:
      This public API is available in Java.
    • numberField

      TaskQuery.GroupByQuery numberField(String fieldName)

      Groups the result of the query by the custom Number field fieldName.

      Parameters:
      fieldName - Name of the custom Number field.
      Returns:
      Query for further composition.
      API:
      This public API is available in Java.
    • timestampField

      TaskQuery.GroupByQuery timestampField(String fieldName)

      Groups the result of the query by the custom Timestamp field fieldName.

      Parameters:
      fieldName - Name of the custom Timestamp field.
      Returns:
      Query for further composition
      API:
      This public API is available in Java.