Connection Type
field to Replica set
.mongodb+srv://<your_username>:<your_password>@<host_name_or_connection_url>/<authDBName>
. Please extract and copy the fields as below:<connection_url>
to the Host Address
field<defaultDbName>
to the Default Database Name
field<your_username>
to the Username
field<your_password>
to the Password
field<authDbName>
to the Database Name
field under the Authentication
sub-section.SCRAM-SHA-1
, SCRAM-SHA-256
, MONGO-CR
.Default
: Depends on Connection Type. If using Replica set
, this is Enabled
. If using Direct connection
, this is Disabled
.Enabled
: Reject connection, if SSL is not available.Disabled
: Connect without SSL, use a plain unencrypted connection.Form input
.Find one or more documents
, Insert a document
, Update one
, Count
etc.Collection Name
: The name of the collection or view to query. The input is expected in a string format like the following :Query
: The query predicate. If unspecified, then all documents in the collection will match the predicate. The input is expected in JSON/BSON format like the following :Sort
: (Optional) The sort specification for the ordering of the results. The input is expected in JSON/BSON format like the following :Projection
: (Optional) The projection specification to determine which fields to include in the returned documents. The input is expected in JSON/BSON format like the following :Limit
: (Optional) The maximum number of documents to return. If unspecified, then defaults to 10 documents. The input is expected in number format :Skip
: (Optional) Number of documents to skip. Defaults to 0. The input is expected in number format :Collection Name
: The name of the target collection. The input is expected in a string format like the following :Documents
: An array of one or more documents to insert into the named collection. The input is expected in a JSON/BSON Array format like the following :Collection Name
: The collection against which to run the command. The input is expected in a string format like the following :Query
: The query that matches documents to update. The input is expected in JSON/BSON format like the following :Update
: The modifications to apply. The input is expected in JSON/BSON format like the following :Limit
: The dropdown is used to configure if this delete command should act upon a single document or if this command should delete all the matching documents according to the query.Collection Name
: The target collection against which to run the command. The input is expected in a string format like the following :Query
: The query that matches document(s) to delete. The input is expected in JSON/BSON format like the following :Limit
: The dropdown is used to configure if this delete command should act upon a single document or if this command should delete all the matching documents according to the query.Collection Name
: The name of the collection or view to count. The input is expected in a string format like the following :Query
: A query that selects which documents to count in the collection or view. The input is expected in JSON/BSON format like the following :Collection Name
: The name of the collection to query for distinct values. The input is expected in a string format like the following :Query
: A query that specifies the documents from which to retrieve the distinct values. The input is expected in JSON/BSON format like the following :Key/Field
: The field for which to return distinct values. The input is expected in a string format like the following :Collection Name
: The name of the collection or view that acts as the input for the aggregation pipeline. The input is expected in a string format like the following :Array of Pipelines
: An array of aggregation pipeline stages that process and transform the document stream as part of the aggregation pipeline. The input is expected in JSON/BSON array format like the following :Raw Input