Short and clear: is there any way to prevent setting a schema field but allowing to get the value?
I\'ve been around the Mongoose Documentation but can\'t find what
An alternative if you want to set a default value that can never be changed:
var schema = new Schema({ securedField: { type: String, default: 'Forever', set: function (val) { return this.securedField; } });