How I do promisee All settled?

Hi!
I need to make multiples api calls. Promise.all doesn't fit for my task because if one fails, everything will fail.
I need to get the status of every one of the calls

I can not use for of + await because it is slow.

Retool supports allSettled? if not, what can I do?
Thank you!

Hey @misterL!

Promise.allSettled is supported! Are you running into any particular issues when using it?

Nice!!! I think it was not supported, the docs are note very friendly actually.
Thank you kabirdas