Scheme.find() taking 60 seconds to resolve but executionTimeMillis is 1

Most likely it takes that long because you do not consume the data from the cursor created by user.find(). The delay is probably the cursor expiring in the server. If have to call something like toArray() to get the data in your application.

See Collection() — MongoDB Node.JS Driver 1.4.9 documentation

Try something like:

const documents = await User.find().toArray() ;