Skip to content

Tag: mongoose

findOne not working? mongoose / mongodb server

basically a user has properties {_id: objectid, username: string, password: string, .. etc} I send this route a json like below to change its username Assume Admin123 doesn’t exist then const foundUser would not be null because there is no user in the user collection with username Admin123. However cons…

Does Mongoose auto cast types?

When I retrieve and modify a Lobby with this Schema it seems to automatically cast types. I could not find the documentation for that feature so I am wondering if I am mistaken something else for autocasting. I convert the types of password and owner to true or false because this is an exposed API endpoint ev…

Async/await in Nodejs + Mongoose

I’m new to Promises and async/await programming and I am not sure I am getting it straight. I am creating an API in Nodejs, with Express, Mongoose and MongoDB. I have seen a lot of tutorials on how to deal with asynchronicity but all of them are about NodeJs projects where the routing and the DB query a…