| 1976 | const actionCount = () => new Parse.Query(className).count(); |
| 1977 | const actionCreate = () => new Parse.Object(className).save(); |
| 1978 | const actionUpdate = obj => obj.save({ revision: 2 }); |
| 1979 | const actionDelete = obj => obj.destroy(); |
| 1980 | const actionAddFieldOnCreate = () => |
| 1981 | new Parse.Object(className, { ['extra' + Date.now()]: 'field' }).save(); |
no outgoing calls
no test coverage detected