Remove Schema Field in Mongoose Discriminator Remove Schema Field in Mongoose Discriminator mongoose mongoose

Remove Schema Field in Mongoose Discriminator


According to the mongoose.model jsdoc you can set options.clone=false to have your discriminator not inherit the base schema. You would then need to explicitly re-declare the fields you want in your discriminator.