gpt4 book ai didi

node.js - 如何根据另一个属性选择一个属性 - mongodb

转载 作者:太空宇宙 更新时间:2023-11-03 23:54:19 25 4
gpt4 key购买 nike

我正在使用mongoose。我想根据此处 type 处的另一个属性来选择 users 属性。

例如,当我的类型私有(private)时,我想选择用户

Conversation.find({
users: {
$elemMatch: {
user: _id
}
}
},{
title: 1,
type: 1,
users:1 // when `type` is `private` I want to this field to be one.
});

我的架构:

const ConversationSchema = new Schema({
type: {type: String, enum: ['private', 'group'], default: 'private'},
creator: {type: Schema.Types.ObjectId, ref: 'User', index: true, required: true}, // creator
// for group,
title: String,
picture: String,
description: String,
users: [
{
user: { type: Schema.Types.ObjectId, index: true, reuqired: true, unique: true },
role: { type: String, enum: ['admin', 'member'], default: 'member' },
mute: { type: Boolean, default: false },
type: {type: String, enum: ['private', 'group'], default: 'private'},
}
],
}, { timestamps: true });

最佳答案

您可以conditionally exclude fields通过使用 REMOVE在聚合中。在你的情况下,它应该是:

Conversation.aggregate([
{$match: {"users.user": id}},
{
$project: {
title: 1,
type: 1,
users: {
$cond: {
if: { $eq: [ "$type", "private" ] },
then: "$users",
else: "$$REMOVE"
}
}
}
}
])

旁注:如果您在 $elemMatch 表达式中仅指定单个条件,则不需要使用 $elemMatch

关于node.js - 如何根据另一个属性选择一个属性 - mongodb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58038535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com