Скажем, у меня есть это userSchema
:
const userSchema = new Schema({
firstName: {type: String, required: true},
lastName: {type: String, required: true},
email: {type: String, required: true, unique: true},
});
и это chatSchema
:
const chatSchema = new Schema({
user_ids: {type: [String]},
});
Интересно, могу ли я выполнить поиск, чтобы получить все чаты от пользователя у которого есть user_id
внутри чата user_ids
, и как я могу это сделать.