I have the table in the Parser database, which is called Comment.
Within it I have the comment field and a field called a pointer of type "pointer" that points to the objectId of another table that is called Image. So, I need to show all the comments that are related to this photo. I'm doing it this way:
ParseQuery query = ParseQuery.getQuery ("Comment");
query.whereEqualTo ("pointer", obID);
query.findInBackground (new FindCallback () {
What am I doing wrong? It shows nothing!