I’m currently fetching all of my projects from Asana’s API using the node Asana library and this
my issue is it’s not returning me the status_update.status_type or status_update.color as they are stored elsewhere, but it is returning me current_status_update.gid
when looking at the dev documentation I see that this exists
getStatus()
But it’s only a 1:1 Fetch, which means that if I have a 500+ projects, I will need to do an enormous amount of fetches just to get my status updates.
Is there a way to access a table with all the Projects Status Updates at once and then complete my filtering/joining on my end?