class |
AbstractCollectionStatement |
|
class |
AbstractRunCommandStatement |
|
class |
AdminCommandStatement |
|
class |
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
|
class |
CountDocumentsInCollectionStatement |
|
class |
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
|
class |
CreateIndexStatement |
Creates an index via the database runCommand method
For a list of supported options see the reference page:
|
class |
DeleteManyStatement |
|
class |
DropAllCollectionsStatement |
|
class |
DropCollectionStatement |
Drops a collection via the database runCommand method
For a list of supported options see the reference page:
|
class |
DropIndexStatement |
Drops an index via the database runCommand method
For a list of supported options see the reference page:
|
class |
FindAllStatement |
|
class |
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
|
class |
InsertManyStatement |
Inserts many documents via the database runCommand method
For a list of supported options see the reference page:
|
class |
InsertOneStatement |
Inserts a document via the database runCommand method
For a list of supported options see the reference page:
|
class |
ListCollectionNamesStatement |
Gets a list of collection names via the database runCommand method
For a list of supported options see the reference page:
|
class |
RunCommandStatement |
|
class |
UpdateManyStatement |
|