I’m POSTing to http-functions which responds OK and it passes the json data to this function that is stopping. I’m confident it’s not that.
So I POST once, then it will loop through users() and sometimes it just stops.
const userOrder = await Promise . all ( users . map ( u => order (u. id )));
This line of code does interest me, I may be able to use that to remove all my await calls outside of the loop. ?