Mongo / Mongoose - 空双嵌套数组的计数

时间:2016-09-30 15:55:53

标签: node.js mongodb mongoose aggregation-framework

我有以下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: [] } })

1 个答案:

答案 0 :(得分:0)

Item.find({ 'columns.rows': {$in: [] } })