-1
I have the table in the Parser database, which is called Comentario.
Inside it I have the comment field and a field called "pointer" pointer that points to the objectId of another table called Image. Therefore, 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? Shows nothing!