Closed
Description
I am running this same query from parse.com and on my local parse server .
var messageQuery = new Parse.Query("Message");
messageQuery.descending("updatedAt");
messageQuery.include("channelId");
messageQuery.select("channelId");
messageQuery.select("channelId.exchange");
Channeld is pointer field to my other document.
On parse.com server this query works and return result with only exchange field and on parse-server it selects complete channelId document and prints everything.