I have a problem with parse. I wrote a cloud code
Parse.Cloud.afterSave(Parse.User, function(request) { var user = request.object; if( !user.existed() ) { //all the times !user.existed() is true when I save user object //also in signup is true } })
how can i do the inside if the block is only executed if the user is a new user?
user5303752
source share