是否有可能通过GoInstant GoAngular的单个数组元素查询具有数组值的键?例如,如果使用以下键/属性查询项目列表,是否可以仅选择属于单个用户的项目?
item: {
name: 'Item name',
description: 'A longer description of the item and its details',
category: 'Business',
user_ids: [1,3,7,15] //This is an array of user id's because items
//have a many-to-many relationship with users
}
我尝试了这个查询,但它没有返回任何内容:
var queryResults = $goQuery('items', { user_ids: 1 }, { limit: 10 }).$sync();
我认为根据MongoDB documentation这是正确的语法,但我不确定GoInstant是否已实现此运算符。任何帮助将不胜感激。
答案 0 :(得分:0)
这应该按照您的预期工作,这绝对是一个错误!请继续关注,我会在修复后更新此答案。