0

我正在使用 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”,如果不指定受理人,我无法进行此查询。

有谁知道如何做到这一点?

4

1 回答 1

0

虽然您可以使用 来创建和更新任务assignee=null,但您不能查询未分配的任务。您需要获取所有要修剪的任务,然后过滤掉您身边未分配的任务。

于 2017-03-30T01:11:21.960 回答