Basically MongoDB collection, with some additional properties and methods.
Get the collection name.
Get current index hint for collection.
Get the full collection namespace.
The current read concern values.
The current write concern values.
http://mongodb.github.io/node-mongodb-native/3.0/api/Collection.html#aggregate
http://mongodb.github.io/node-mongodb-native/3.0/api/Collection.html#bulkWrite
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#count
Use countDocuments or estimatedDocumentCount
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#countDocuments
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#createIndex
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#createIndexes and http://docs.mongodb.org/manual/reference/command/createIndexes/
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#deleteMany
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#deleteOne
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#distinct
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#drop
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#dropIndex
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#dropIndexes
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#estimatedDocumentCount
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#find
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#findOne
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#findOneAndDelete
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#findOneAndReplace
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#findOneAndUpdate
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#geoHaystackSearch
MongoDB 3.6 or higher no longer supports the group command. We recommend rewriting using the aggregation framework.
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#indexExists
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#indexInformation
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#indexes
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#initializeOrderedBulkOp
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#initializeUnorderedBulkOp
Use insertOne, insertMany or bulkWrite
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#insertMany
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#insertOne
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#isCapped
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#listIndexes
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#mapReduce
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#options
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#parallelCollectionScan
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#reIndex
Use use deleteOne, deleteMany or bulkWrite
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#rename
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#replaceOne
Use insertOne, insertMany, updateOne or updateMany
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#stats
use updateOne, updateMany or bulkWrite
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#updateMany
http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#updateOne
http://mongodb.github.io/node-mongodb-native/3.3/api/Collection.html#watch
Basically MongoDB collection, with some additional properties and methods.