我使用的是python-asana API,
https://github.com/Asana/python-asana
使用此功能,如果我指定任务受理人和工作区,则很容易在工作区中获取所有任务,如此,
task_fields = ["this.workspace", "this.name", "this.created_at", "this.completed", "this.assignee_status", "this.completed_at", "this.name", "this.project"]
tasks=client.tasks.find_all({"opt_fields":task_fields}, assignee = 'xxxxxxxx', workspace = xxxxxx, iterator_type='items')
但是,我想做一些任务维护/修剪,并希望得到一个未分配给任何人的所有任务的列表。我相信此API中的受理人字段不接受' null'如果没有指定受让人,我就无法进行此查询。
有谁知道怎么做?
答案 0 :(得分:0)
虽然您可以使用assignee=null
创建和更新任务,但无法查询未分配的任务。您需要获得希望修剪的所有任务,然后过滤未经分配的任务。