We're switching to the official driver, away from the deprecated mgov2
In mgo we set the session mode to be monotonic like this:
myMongoSession.SetMode(mgo.Monotonic, true)
My understanding of doing so is to ensure: "If a process reads the value of a data item x, any successive read operation on x by that process will always return that same value or a more recent value."
This is important for us
How would I do this using the official driver? I can't find a reference to doing so