UNPKG
quosdolorem
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
The MongoDB Shell
github.com/MonaGoyette/quosdolorem.git
MonaGoyette/quosdolorem
quosdolorem
/
packages
/
java-shell
/
src
/
test
/
resources
/
cursor
/
readConcern.js
9 lines
•
175 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// before
db
.coll
.drop
(); db
.coll
.insertOne
({a:
1
});
// command
db
.coll
.find
()
.readConcern
('local');
// command
db
.coll
.find
()
.readConcern
('unknown');
// clear
db
.coll
.drop
();