I've been looking for an example on how to use Parse.com queries. It's been really vague. I think it should start with:
ParseQuery query=ParseQuery.getQuery(<Class(aka table name)>);
But then, i've got no idea. You can do something like
query.whereEqualsTo(<collumn>,value)
In that case i get the 'value' back if it exists. What I am trying to do is. I got a table with the collumns ID and Name. I know what the ID is, it is 0. So now I want to know what Name belongs to the ID = 0.. But what query should I use, I have no idea ...