You can use
wixData.get("CollcetionName", id)
.then(item => {
//change the fields you want to change for example:
item.price = 500;
item.stauts = "avialable";
return wixData.update("CollcetionName", item);
}).then(() => console.log("done")).catch(err => err);