Daniel Hello Is there a way to get an output of how many tasks are currently assigned to a user? The use case is as follows: A task should be given to the user who currently has the fewest tasks. Many thanks in advance.
Lukas Lieb Hi @Daniel Yes there is a way, you can simply use a TaskQuery to evaluate how many tasks a user has assigned, e.g.: TaskQuery.create().where().canWorkOn(iUser).executor().count();