I'm using Parse iOS SDK 1.8.5, and for CloudCode I'm using JavaScript SDK 1.6.4.
When I saved a new Parse object from iOS, and CloudCode is like this for testing.
Parse.Cloud.beforeSave( "Post", function(request, response) {
response.success();
});
After that, the object is saved to the database, but all fields are null.
When I removed the beforeSave function from the CloudCode, all fields are saved properly.
I tested Javascript SDK from 1.5.0 to 1.6.4, all 1.6.x SDKs are same result.
Is there a information about that?