In MongoDB, should I store the user id in the _id field or in id field created by myself?
Each user has a unique ID and an email and password. Of course, email is also unique. Currently, I have a id field in my mongoDB collection of user. For example, below is a document of a user. { _id:…