i'm writing a simple application to build a task dependency tree (i declare a dependency by commenting on a task "Depend on: ") using asana API, it is indeed a simple task and should also be a simple and quick script, but i got to a bottle neck here.
From the API documentation i get that i need to: Query the project tasks using /project//tasks iterate trough tasks to:
- get complete task information, since i'm only getting id and name.
- Get task stories.
what i would like to do is a simple api call to get all this information at once, like: /project//tasks options.expand {task, stories}. Am i missing something or this it not possible?