CloudKit JS offers methods to save, delete and fetch records but there is no easy methods to update en existing one. The documentation explains how to do it:
var query = {
operationType : 'forceUpdate',
recordType: 'List',
record : {
recordName : 'TheRecordIWannaUpdate',
fields: { TheFieldToUpdate: { 'value': 42}}
}
};
container.publicCloudDatabase.performQuery(query).then(function(response) {
if(response.hasErrors) {
console.log(response.errors[0]);
} else {
console.log('It's working')
}
});
I tried this code and it returns It's working
however my record is not updated, what is wrong with this code?
To update a record you can use the recordChangeTag. The latest recordChangeTag is needed.
Documentation
Example
The Save Policy does not work for me, but you can add it.