Search criteria for filtering

Hi

While there are different kinds of queries in flowable which give lists of results for example list of tasks, process instances, process definitions and etc, is there any way to filter and paginate these results using criteria?

Yes. Have a look for example at the query for tasks: https://github.com/flowable/flowable-engine/blob/master/modules/flowable-task-service-api/src/main/java/org/flowable/task/api/TaskInfoQuery.java

Each entity type (task, process definition/instance, etc.) have this kind of query.

1 Like