const docRef = firestore.collection("SequenceId").doc(doc.id);
docRef.update({
sequencenumber: {
[x]: false
}
})
But i want only the value of 2: to be updated to false, while maintaining 3: and 4: . Here 3: and 4: gets deleted.