You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrade parse-server to 2.2.22, I have problems with my code:
var query = new Parse.Query(ClassA);
query.select(['field1', 'field2', .., 'createdBy']); // createdBy is pointer of Parse.User
query.include('createdBy');
query.include('createdBy.shop'); // shop is pointer of Class Shop
I tracked on github, I think problems from 2 pull-request GH-2809, GH-2737.