Hi, I’m trying to create a new workflow with the Saved filters functionality, but somehow I cannot manage to show the favorite tasks on that view. Here are my current filters:
done = false && (dueDate <= now+3d || priority >= 3)
And I want to also display the unfinished favorite tasks no matter the dueDate
I tried adding and OR condition like favorite=true
or is_favorite=true
(since I saw the API uses this name), and none of them worked. I also tried isFavorite=true
and with this filter, the API returns a 500 error.
How can I also list the tasks that are in favorite?
Thank you