Udało mi się to naprawić, mapując mój obiekt i uruchamiając 2 oddzielne aktualizacje. Pierwszy usuwa stary element, a drugi dodaje zaktualizowaną wersję. Jestem pewien, że istnieje lepszy sposób na zrobienie tego, jednak wydaje się, że to działa.
handleFormSubmit(event) {
event.preventDefault();
const { careerHistoryPositions } = this.state;
ProfileCandidate.update({_id: this.state.profileCandidateCollectionId}, { $unset: {
'careerHistoryPositions': {}
}
})
const updatePosition = this.state.careerHistoryPositions.map((position) => {
ProfileCandidate.update({_id: this.state.profileCandidateCollectionId}, { $push: {
'careerHistoryPositions': {
company: position.company,
title: position.title,
uniqueId: position.uniqueId
}
}
})