标签: mongodb mongoose
我有这个(简化的)模式:
{ name: {type:String, unique: true} idList: [String] }
我希望idList中的值在整个集合中都是唯一的
idList
我看过mongoose-unique-array,但它似乎仅支持数组中的唯一值。
mongoose-unique-array
我是否需要制作idList的另一个收藏并将其链接回id?