Understanding `unique` in Mongoose

Understanding `unique` in Mongoose

Understanding `unique` in Mongoose

In this post, we will give you information about Understanding `unique` in Mongoose. Here we will give you detail about Understanding `unique` in Mongoose And how to use it also give you a demo for it if it is necessary.

The unique option tells Mongoose that each document must have a unique value for a given path.
For example, below is how you can tell Mongoose that a user’s email must be unique.

const mongoose = require('mongoose');

const userSchema = new mongoose.Schema({
  email: {
    type: String,
    unique: true // 'email' must be unique
  }
});
const User = mongoose.model('User', userSchema);

If you try to create two users with the same email, you’ll get a duplicate key error.

// Throws 'MongoError: E11000 duplicate key error collection...'
await User.create([
  { email: 'test@google.com' },
  { email: 'test@google.com' }
]);

const doc = new User({ email: 'test@google.com' });
// Throws 'MongoError: E11000 duplicate key error collection...'
await doc.save();

Updates can also throw a duplicate key error. For example, if you create a user with a unique email address and then update their email address to a non-unique value, you’ll get the same error.

await User.create({ email: 'test2@google.com' });

// Throws 'MongoError: E11000 duplicate key error collection...'
await User.updateOne({ email: 'test2@google.com' }, { email: 'test@google.com' });

Index, Not Validator

A common gotcha is that the unique option tells Mongoose to define a unique index. That means Mongoose does not check uniqueness
when you use validate().

await User.create({ email: 'sergey@google.com' });

const doc = new User({ email: 'sergey@google.com' });
await doc.validate(); // Does not throw an error

The fact that unique defines an index as opposed to a validator is also important when
writing automated tests. If you drop the database the User model is connected to, you’ll
also delete the unique index, and you will be able to save duplicates.

await mongoose.connection.dropDatabase();

// Succeeds because the 'unique' index is gone!
await User.create([
  { email: 'sergey@google.com' },
  { email: 'sergey@google.com' }
]);

In production you normally wouldn’t drop the database, so this is rarely an issue in production.

When writing Mongoose tests, we normally recommend using deleteMany() to clear out data in between tests, rather than dropDatabase(). This ensures that you delete all documents, without clearing out database-level configuration, like indexes and collations. deleteMany() is also much faster than dropDatabase().

However, if you choose to drop the database between tests, you can use the Model.syncIndexes() function to rebuild all unique indexes.

await mongoose.connection.dropDatabase();

// Rebuild all indexes
await User.syncIndexes();

// Throws 'MongoError: E11000 duplicate key error collection...'
await User.create([
  { email: 'sergey@google.com' },
  { email: 'sergey@google.com' }
]);

Handling null Values for Understanding `unique` in Mongoose

Since null is a distinct value, you cannot save two users that have a null email. Similarly,
you cannot save two users that don’t have an email property.

// Throws because both documents have undefined 'email'
await User.create([
  {},
  {}
]);

// Throws because both documents have null 'email'
await User.create([
  { email: null },
  { email: null }
]);

One workaround is to make the email property required, which disallows null and undefined:

const userSchema = new mongoose.Schema({
  email: {
    type: String,
    required: true,
    unique: true // 'email' must be unique
  }
});

If you need email to be unique unless it is not defined, you can instead define a sparse unique index on email as shown below.

const userSchema = new mongoose.Schema({
  email: {
    type: String,
    // 'email' must be unique, unless it isn't defined
    index: { unique: true, sparse: true }
  }
});

User-Friendly Duplicate Key Errors for Understanding `unique` in Mongoose

To make MongoDB E11000 error messages user-friendly, you should use the mongoose-beautiful-unique-validation plugin.

const schema = new Schema({ name: String });
schema.plugin(require('mongoose-beautiful-unique-validation'));

const CharacterModel = mongoose.model('Character', schema);

const doc = await CharacterModel.create({ name: 'Jon Snow' });

try {
  // Try to create a document with the same '_id'. This will always fail
  // because MongoDB collections always have a unique index on '_id'.
  await CharacterModel.create(Object.assign({}, doc.toObject()));
} catch (error) {
  // Path '_id' (5cc60c5603a95a15cfb9204d) is not unique.
  error.errors['_id'].message;
}

A mongoose is a small, carnivorous mammal that is found in Africa, Asia, and southern Europe. They are known for their ability to kill venomous snakes, and they have been used for centuries to control snake populations. Mongooses are also popular pets, but they can be difficult to care for and are not recommended for everyone.

Here are some of the pros and cons of owning a mongoose:

Pros:

  • Mongooses are intelligent and can be trained to do tricks.
  • They are relatively small and easy to care for.
  • They can be effective at controlling snake populations.

Cons:

  • Mongooses can be aggressive and unpredictable.
  • They are not legal to own in some places.
  • They can carry diseases, such as rabies.

If you are considering getting a mongoose as a pet, it is important to do your research and make sure that you are prepared to provide the proper care. Mongooses are not for everyone, but they can make great companions for the right people.

Here are some additional facts about mongooses:

  • They are about the size of a cat, with long bodies and tails.
  • They have sharp claws and teeth, which they use to catch and kill prey.
  • They are active during the day and night.
  • They eat a variety of foods, including snakes, rodents, insects, and fruit.
  • Mongooses live in a variety of habitats, including forests, grasslands, and deserts.
  • They are solitary animals, but they will sometimes gather in groups to hunt.
  • Mongooses are monogamous, and they mate for life.
  • Females give birth to litters of 2-4 young.
  • Mongooses reach sexual maturity at about 6 months old.
  • They have a lifespan of about 10 years.

Hope this code and post will helped you for implement Understanding `unique` in Mongoose – onlinecode. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US