readConcern
ReadConcern is a MongoDB feature that controls the level of isolation and data freshness for read operations. It specifies how up-to-date data must be and how it is acknowledged by replica set members. ReadConcern can be set per operation or per session and applies to reads against primary and secondary members depending on the level and cluster configuration.
Common readConcern levels include local, majority, linearizable, and snapshot. Local returns data from the node’s own
Usage and implications. ReadConcern is specified in the read command, or configured through a session for transactional