Closed
Description
I have a Parse.Object A
that have a children
property that is an array of Pointers to reference other objects of type B
.
When I do the following, it does not send me back the full B
objects contained in the children
property, I mean all B.get("something") returns undefined
const query = new Parse.Query("A");
query.includeAll();
return await query.find({ sessionToken: user.getSessionToken() });
But when I do it like that it works fine ...
const query = new Parse.Query("A");
query.include("children");
return await query.find({ sessionToken: user.getSessionToken() });
So maybe query.includeAll
is broken or I missed something ?
I'm using parse-server 4.3.0