Open RonaldFindling opened 3 years ago
Hey there,
I think I am facing the same issue:
client.tasks.getTasksForProject("<number>").option("fields", "notes").execute()
gives me nothing back for notes
FYI: It seems the kotlin library has the same issue -> see https://forum.asana.com/t/how-to-use-the-task-count-endpoint-for-projects-in-the-java-client-library/99471/10?u=ronald_findling
As discussed here the
option
setting doesn't add the fields to the result.In short
client.projects.getTaskCountsForProject(projectId).option("fields", "num_tasks").execute()
should return a json that containsnum_tasks
-> but it always returns an empty json result.Documentation etc. are referenced in the linked forum post.