ContributionsMost RecentMost LikesSolutionsRe: Mongo DB Update Snap - Expression for Query Figured it out… here’s what the MongoDB Update snap should look like. and the fields you want to “$set” come from a mapper snap prior to the MongoDB Update snap. Mongo DB Update Snap - Expression for Query The following query works in MongoDB Atlas to update a record: db.mytable.update ( { _id : ObjectId(‘1234’) }, { $set : { “org_name” : “new org name” } } ) How do we configure this for use with the Mongo DB -Update snap? any one have an example? SolvedRe: How to convert time stamps in an array to dates Thank you for the quick response @j.angelevski ! your solution worked perfectly! How to convert time stamps in an array to dates How to you convert a timestamp to datetime format? The API that I call uses a timestamp and I need to convert those to mm/dd/yyyy. here’s an example of the timestamp response. Solved