Mongoose adds a ‘__v’ property into Schema’s for versioning – is it possible to disable this globally or globally hide it from all queries?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can disable the “__v” attribute in your Schema definitions by setting the
versionKeyoption tofalse. For example:I don’t think you can globally disable them, but can only do it per Schema. You can read more about Schema’s options here. You might also find the Schema set method helpful.