I am using Parse in my android application. My aim is to retrieve all the names of quizTitle in my Class CSE_1234 for which the status is "no". But I am getting ParseException: No results found Here is my code:
ParseQuery<ParseObject> query = ParseQuery,getQuery("CSE_1234");
query.whereEqualTo("status","no");
query.get("quizTitle");
List<ParseObject> activeQuizTitle=query.find();
String title[]=(String[]) activeQuizTitle.toArray();
return title
couple things are wrong in your codes