ChatGPT解决这个技术问题 Extra ChatGPT

Mongoose Unique values in nested array of objects

For my project, I want to keep a mongoose document for groups of organizations, like this:

var groupSchema = Schema({
  name : { type : String },
  org : { type : Schema.Types.ObjectId, ref : 'Organization' },
  ...
  users : [{
    uid : { type : Schema.Types.ObjectId, ref : 'User' },
    ...
  }]
});

I want to prevent the same user from being in the same group twice. To do this, I need to force users.uid to be unique in the users array. I tried stating 'unique : true' for uid, but that didn't work. Is there a way to do this with mongoose or mongoDB without extra queries or splitting the schema?

Edit: I changed the previous value of uid to uid : { type : Schema.Types.ObjectId, ref : 'User', index: {unique: true, dropDups: true} } But this still doesn't seem to work.

Edit: Assuming there is no simple way to achieve this, I added an extra query checking if the user is already in the group. This seems to me the simplest way.

check this it will be helpful
Thank you for the link. I tried the following: uid : { type : Schema.Types.ObjectId, ref : 'User', index: {unique: true, dropDups: true} } instead of the old value for uid. This still doesn't work, I also tried to restart mongoDB with no success.

J
Jamie

A unique index on an array field enforces that the same value cannot appear in the arrays of more than one document in the collection, but doesn't prevent the same value from appearing more than once in a single document's array. So you need to ensure uniqueness as you add elements to the array instead.

Use the $addToSet operator to add a value to an array only if the value is not already present.

Group.updateOne({name: 'admin'}, {$addToSet: {users: userOid}}, ...

However, if the users array contains objects with multiple properties and you want to ensure uniqueness over just one of them (uid in this case), then you need to take another approach:

var user = { uid: userOid, ... };
Group.updateOne(
    {name: 'admin', 'users.uid': {$ne: user.uid}}, 
    {$push: {users: user}},
    function(err, numAffected) { ... });

What that does is qualify the $push update to only occur if user.uid doesn't already exist in the uid field of any of the elements of users. So it mimics $addToSet behavior, but for just uid.


But how can you force only uid to be unique? In the users array, I have more attributes which could be different every time I add the same user (like date).
Thank you for your input. I've read about validators but I don't see an easier way than adding an extra query checking if the user is already in the group.
How can we ensure this at creation of object first time, Using validation or pre save hooks ?
How would this approach work if there is more then 1 user being added? So an array of objects? Thanks
This doesn't raise an error though while trying to add a user with duplicate id.
A
Ankit Balyan

Well this might be old question but for mongoose > v4.1, you can use $addToSet operator.

The $addToSet operator adds a value to an array unless the value is already present, in which case $addToSet does nothing to that array.

example:

MyModal.update(
   { _id: 1 },
   { $addToSet: {letters: [ "c", "d" ] } }
)

I don't think this is a good example, as this would append the whole array of ["c", "d"] to the array letters as one element, so letters will be ["a", "b", ["c", "d"]] see mongodb docs
$each operator can be used in addition to $addToSet to add all the elements in an array to the array. { $addToSet: { letters: { $each: [ "c", "d"] } } } will do the required work. Thanks
Perfect for my need!