Im wondering if there is some insight into this, I have the query below, when i view the network tab for the request data i can clearly see it has come over the wire, however trying to access it i get nothing, I have been doing some hacky stuff but im wondering is there some nicer solution to this that i havent found yet and why or what is stopping me from accessing it using dot notation on the client side when i can clearly see it in the network response
const mostRecentUser = await new Parse.Query(Parse.User)
.descending("createdAt")
.include('profile')
.first({ useMasterKey: true });
Really just curious what is the mechanism that stops me accessing this json on the client side when the json is literally there in the request data, surely there must be a way to bypass pase .get() etc