| AbstractCollectionStatement |
|
| AbstractMongoStatement |
|
| AbstractRunCommandStatement |
|
| AdminCommandStatement |
|
| BsonUtils |
|
| CountCollectionByNameStatement |
Queries the database for the number of collections that match the supplied collectionName
i.e returns 1 if the collection is present; else 0
|
| CountDocumentsInCollectionStatement |
|
| CreateCollectionStatement |
Creates a collection via the database runCommand method
For a list of supported options see the reference page:
https://docs.mongodb.com/manual/reference/command/create/#create
|
| CreateIndexStatement |
Creates an index via the database runCommand method
For a list of supported options see the reference page:
|
| DeleteManyStatement |
|
| DropAllCollectionsStatement |
|
| DropCollectionStatement |
Drops a collection via the database runCommand method
For a list of supported options see the reference page:
|
| DropIndexStatement |
Drops an index via the database runCommand method
For a list of supported options see the reference page:
|
| FindAllStatement |
|
| FindOneAndUpdateStatement |
Finds and updates a single document via the database runCommand method
NOTE: This does not return the original document,
instead returns 1 if a document was updated, else 0
|
| InsertManyStatement |
Inserts many documents via the database runCommand method
For a list of supported options see the reference page:
|
| InsertOneStatement |
Inserts a document via the database runCommand method
For a list of supported options see the reference page:
|
| ListCollectionNamesStatement |
Gets a list of collection names via the database runCommand method
For a list of supported options see the reference page:
|
| RunCommandStatement |
|
| UpdateManyStatement |
|