I am looking for help with the correct syntax to disable the selection of a property, which is an array of subdocuments. I was hoping for something like this:
var UserSchema = new Schema( { fb_id : Number, children : [{ type: CustomChildSchema,select:false}] } )
children array has potential for exponential growth, so I'm trying to save these results without asking.
source share