Hello.
I set candidate_groups
to Task
, without creating Groups
. In DataBase
there is no foreign key
-s, so that is no problem.
For example: set candidate group "foo"
to task1
. In DB, table “ACT_RU_IDENTITY_LINK” contains record:
group_id = foo
type = candidate
task_id = task1
…
The problem is, tasks search api, doesn’t search by candidateGroup=foo
. (I found implementation, and that’s because if candidateGroup parameter is set, engine does inner join
to groups
, that’s why search not working).
How can I solve this problem. I can’t create Groups, because it dinamically changes.