Assuming I have a bunch of records in a table called LessonBundle with a Version column of type int, is it then possible to do the following with BackendlessDataQuery?
BackendlessDataQuery findLatestVersionQuery = new BackendlessDataQuery();
findLatestVersionQuery.setWhereClause("MAX(Version) AND Platform='" + lessonbundle.getPlatform() +
“’”);
I’m trying to do this in the beforeCreate CBL method.