Why can't i fetch data from my database in mongodb nodejs?
I'm trying to make a simple login system with mongodb. Connecting works fine, but when i try to get the password: async function getAdminPassword(username) { const query = { username: username } // console.log(admins) const user = await admins.findOne(query); try…