SingleNestedPath

SingleNestedPath()

Parameters
  • schema «Schema»
  • key «String»
  • options «Object»
Inherits:
  • «SchemaType»

Single nested subdocument SchemaType constructor.


SingleNestedPath.prototype.discriminator()

Parameters
  • name «String»
  • schema «Schema» fields to add to the schema for instances of this sub-class

  • [value] «String» the string stored in the discriminatorKey property. If not specified, Mongoose uses the name parameter.

Returns:
  • «Function» the constructor Mongoose will use for creating instances of this discriminator model

Adds a discriminator to this single nested subdocument.

Example:

  1. const shapeSchema = Schema({ name: String }, { discriminatorKey: 'kind' });
  2. const schema = Schema({ shape: shapeSchema });
  3. const singleNestedPath = parentSchema.path('shape');
  4. singleNestedPath.discriminator('Circle', Schema({ radius: Number }));

function Object() { [native code] }.

Parameters
  • option «String»
    • The option you’d like to set the value for
  • value «*»
    • value for option
Returns:
  • «undefined»
Type:
  • «property»

Sets a default option for all SingleNestedPath instances.

Example:

  1. // Make all numbers have option `min` equal to 0.
  2. mongoose.Schema.Embedded.set('required', true);