I use Parse and I just want to get all the records in my data class with a specific list in the "blah" field / column.
final ParseQuery<Data> query = ParseQuery.getQuery(Data.class);
query.whereEqualTo("blah", mSomeValueList);
query.setLimit(MAX_DATA_TO_SHOW);
query.orderByAscending("createdAt");
query.findInBackground(new FindCallback<Data>() {...});
I was hoping it would be so simple, but when I try to run the request, I get the following exception: com.parse.ParseException: for equality, a value is required instead of [value0, value1, ...]
How can I get List of Data objects that have this condition?
source
share