Suppose I found and object from collection,
auto b = coll.findOne(["id" : id]);

and b looks like:
{
id: "some_id",
array: ["element1", "element2"]
}

How should I append "element3" to the back of array,
and then save the object back into collection?

Thanks!