javascript-sdk icon indicating copy to clipboard operation
javascript-sdk copied to clipboard

[需求]能不能考虑让 matchesKeyInQuery 和 doesNotMatchKeyInQuery 支持基于 objectId 的 Pointer 查找?

Open chessl opened this issue 5 years ago • 0 comments

类似下面的查询,目前不支持,但 Parse 几年前就已实现:https://github.com/parse-community/parse-server/issues/4346

classAQuery = new Parse.Query("ClassA");
classBQuery = new Parse.Query("ClassB");
classBQuery.notEqualTo("User", request.user);
classAQuery.matchesKeyInQuery("objectId", "ClassA", classBQuery);

同问如果没有办法添加这个功能的话有没有可以不在 Class 里添加新 Column 的解决办法呢? Thanks!

chessl avatar Aug 19 '20 23:08 chessl