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
Since mongoose 5.6 you can do: immutable: true
immutable: true
var schema = new Schema({ securedField: { type: String, default: 'Forever', immutable: true } });