We can use select method for the fields that we wanna get.
For example if I want to get only objectid and some other field, I can use query.select("objectId","otherField);
But if one of my field is a pointer to another object, How can I do that ?
For example if I have a author field (pointer to Author class) How can I do select
keys?
does query.select("author.username")
work?