我有以下mongoose架构:
var RowSchema = new Schema({
value: String,
createdAt:{
type: Date,
'default': Date.now
}
});
var ColumnSchema = new Schema({
rows: [RowSchema],
createdAt:{
type: Date,
'default': Date.now
}
});
var ItemSchema = new Schema({
_id: {
type: String,
unique: true,
'default': shortid.generate
},
name: String,
columns: [ColumnSchema],
createdAt:{
type: Date,
'default': Date.now
}
})
我想运行查询以查找所有列中包含零行的所有Item
个。所以我知道如何找到一个空的数组:
Item.find({ columns: { $exists: true, $eq: [] } })
但我想要像
这样的东西Item.find({ 'columns.rows': { $exists: true, $eq: [] } })
答案 0 :(得分:0)
试
Item.find({ 'columns.rows': {$in: [] } })