Should I use Promise.all? When should I use it

Hi I am not sure if I should use a promise all in a case like this:

        const userMessage = await Message.create()
        const messages = await Session.get();


Does it make sense to use it here?
Was this page helpful?