How to force Int32 – Int64 instead of Double with MongoDB Node JS?
I would like to save int32 or int64 values from my Atlas Trigger (NodeJS code), but when i save any value it saves it as a Double. user_collection.updateOne({"_id": "anyID"}, {$inc: {"score": 2}}); With the above line, score is a type…