Hello,
Is there a way of inserting/updating/saving an object in to a database without deleting unspecified field?
if (cryCur === “eth”) {
let toUpdate = {
“_id”: itemID,
“title”: result.title,
“eth”: result.price,
“volume”: result.volume
};
update_table(toUpdate);
}
function update_table(toUpdate) {
wixData.update("MainTable", toUpdate);
}