-
Feature Request
-
Resolution: Fixed
-
L3 - Default
-
7.12.3
-
None
In order to find all tasks that are not assigned to a specific user (e.g. the current user), the query API for tasks does not allow to simply use a filter like
assigneeNotIn("user1")
Instead, one would have to either
- put in all other users in the query (which might be tough or impossible to do) or
- query for all tasks first, query for the tasks of the user to exclude second and then remove all latter tasks from the first list
Both options are not ideal and a new option to query for tasks whose assignee is not in the list of specified users would enhance the Task Query API.