我正在使用 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”,如果不指定受理人,我无法进行此查询。
有谁知道如何做到这一点?