Can a Parse object be fetched with object.fetch and at the same time include its object references as in query.include?
Here is the query example:
let query = new Parse.Query("MyCollection");
query.include("MyObjectReference");
return query.find();
How to do it with a fetch command?