Collection xxxxAsync() functions usage on server side

On the server side: do we need to explicitly ‘await’ each collection async method before a next one can be launched, or can we launch multiple async collection queries/updates/inserts ‘in parallel’ and then await them simultaneaously via e.g. await Promise.all(), like you can do with any other function that returns a promise?

Yes for the quoted message