I have a document like this:
{
"_id" : ObjectId("58b1404d002d2b1a481b8ddf"),
"firstName" : "ABC",
"lastName" : "XYZ"
}
And I have a list named topics:
List<String> topics = new ArrayList<String>();
topics.add("Business");
topics.add("Technology");
topics.add("Sports");
topics.add("Career");
Now, I want to update my document like this:
{
"_id" : ObjectId("58b1404d002d2b1a481b8ddf"),
"firstName" : "ABC",
"lastName" : "XYZ",
"readAbout" : ["Business", "Technology", "Sports", "Career"]
}
I tried some ways but ended up with many errors. I am new in this. Please can anyone suggest me how to do this?