I have recently changed one of my fields from object
to array of objects
.
In my production I have only 14 documents with this field, so I decided to change those fields.
Is there any best practices to do that?
As it is in my production I need to do it in a best way possible?
I got the document Id's of those collections.like ['xxx','yyy','zzz',...........]
my doc structure is like
_id:"xxx",option1:{"op1":"value1","op2":"value2"},option2:"some value"
and I want to change it like(converting object to array of objects)
_id:"xxx",option1:[{"op1":"value1","op2":"value2"},
{"op1":"value1","op2":"value2"}
],option2:"some value"
Can I use upsert
? If so How to do it?
Since you need to create the new value of the field based on the old value, you should retrieve each document with a query like
then iterate over the results and
$set
the value of the field to its new value:The document structure is rather schematic, so I omitted putting in actual code to create
newVal
fromoldVal
.