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.getQuer
To find the list of user whose username starts with abc,You can use the condition
query.whereStartsWith("username", "abc");
So the entire query looks as
ParseQuery query = ParseQuery.getQuery("YourClassName");
query.whereStartsWith("username", "abc");
query.findInBackground(new FindCallback() {
public void done(List object, ParseException e) {
if (object == null) {
Log.d("score", "The getFirst request failed.");
} else {
Log.d("score", "Retrieved the object.");
}
}
});