Hi,
I have managed to get all the tasks in progress assigned to a user, but I'd like to get also the tasks whose status is ready to start in the same query. Is that possible?
The code that I have so far is:
fields=['sg_status_list','id','entity','project']
filters = [['step','is', {"type": "Step", "id": step_id}],['task_assignees','is', {"type":"HumanUser", "id": user_id}],['sg_status_list','is','ip']]
tasks = self.sg.find("Task",filters,fields)
Many thanks