Hi there!
Some background info before I put forward my question:
I'm writing-up a small script to help me manage my tasks. Specifically I often need to abort (and archive) a very large number of running and pending tasks, and doing that kind of thing via the web-interface by clicking away one-by-one is not a viable solution.
So, I've gotten into the habit of copying a list of relevant tags into a list, and then task-querying those and dealing with them accordingly. But that's often also a messy business (copying tags one by one...).
What I really need, is to query by project name instead of controller tags. But this obviously returns a list of all tasks under said project, including archived tasks, and what's more - the query result is limited to 500 results. So even if I wanted to just fetch everything under the project (which I don't), and then filter with a list comprehension to obtain only non-archived tasks, I'd still need to overcome the 500 limit...
Thus we arrive at my actual question:
Is it possible to fetch a list of tasks via Task.get_tasks, with a task-filter to the effect of {'archived': False}, or anything similar?
Thanks!