I'm currently trying to execute a query on a table, but I've got some problems with the pointers.
In the table, I have a pointer to a User. The User himself has a Pointer to a Object "Company". When I do this, I get the user (username, etc), but not the company:
ParseQuery<ParseObject> query = ParseQuery.getQuery("Infos");
query.whereEqualTo("status", 1);
query.include("user");
query.findInBackground(...);
How am I supposed to get the pointers inside of the pointer?