I have this collection in a database, it contains a lot of documents on it, i would like all instances of "Æ" to be replaced with "ae".
My documents look like this:
{
"_id" : ObjectId("57071e9fee31902f0a9ad989"),
"layout" : "normal",
"name" : "Æther Flash",
"manaCost" : "{2}{R}{R}",
"cmc" : 4,
"colors" : [ "Red" ]
}
I suppose i should use something like find_one_and_update, maybe?