如果我尝试使用containedIn
如下方式过滤数据,我将得到空结果,因为我试图从指针列类型中过滤,userProfile
尽管我userProfile
在查询中包含了。
但是,我尝试containedIn
直接使用到另一个数组列中,User
并且似乎工作正常。这种下面的查询不起作用吗?什么是替代解决方案?
const query = new Parse.Query('User');
query.equalTo('accountType', 'Student');
query.include('userProfile');
// search.subjects is an array
query.containedIn('userProfile.subjectsIds', search.subjects);