holunda-io / camunda-bpm-taskpool

Library for pooling user tasks and process related business objects.
https://www.holunda.io/camunda-bpm-taskpool/
Apache License 2.0
68 stars 26 forks source link

Support additional filter operator "oneOf" for filtering tasks and data entries #757

Closed tobiasstamann closed 1 year ago

tobiasstamann commented 1 year ago

Additional Filter Operators For filtering Task List

Current Behaviour

Currently there are already some operators supported by the task list api like <,>,=.

Wanted Behaviour

We need another operator that supports an "in"/"one of" operator where the value must be equal to one of the passed values. The syntax could be like : =<value 1>|<value 2>|...

Possible Workarounds

There's no possibility to achieve this with the given filter operators

S-Tim commented 1 year ago

836 implements very similar behavior. You can provide multiple filters for the same attribute and they will be OR-composed before being AND-composed with filters for other values

zambrovski commented 1 year ago

Currently a very good-looking workaround exists with #836. Closing this.

zambrovski commented 1 year ago

Will not be implemented until someone wants exactly this again.