Mongo Query
The Mongo Query component allows you to execute queries on a collection of a MongoDB database.
By default, it will retrieve all the documents. Additionally, you can filter which documents are retrieved based on query and specify a sort order.
Handlebars
This component lets you use Handlebars templates. More information about Handlebars can be found in this section
Configuration
General
Connection stringA MongoDB connection string.
Example: mongodb://<username>:<password>@localhost:27017/<databaseName>
Here <databaseName>
is the database to connect to.
The name of the collection to query.
Example: documents
A Mongo query that can be passed in find()
. Example: {"kind":"CONTAINER"}
You can use Handlebars to create dynamic queries. For nested keys, you can use the so-called dot-notation.
An empty query value or empty object {}
will return all the data from the database.
Specify in the sort parameter the field or fields to sort by and a value of 1 or -1 to specify an ascending or descending sort respectively.
Example: {"kind":1}
Specify in the projection parameter the field or fields you want to include or exclude from the query result. A value of 1 indicates inclusion and a value of 0 indicates exclusion.
Example: {"kind":1}
Specify a limit on the number of documents that you want to retrieve.
SkipSpecify the amount of documents that should be skipped before results are retrieved.
Enable parsing numberDecimalBy default Mongo will retrieve NumberDecimals (in this example 1.05) as { $numberDecimal: "1.05" }
. By enabling parsing numberDecimal the returning value will be a float: 1.05
instead.
{ "testKey": { $numberDecimal: "1.0" } }
will parse to { "testKey": 1 }
.TLS
Use TLSWhether or not to use TLS in case your mongoDB requires TLS.
Allow Invalid CertificatesChecking this will disable certificate validation.
One or more certificate authorities to trust when making a TLS connection. In order to access the local filesystem, the XILL4_WORKDIRS
environment variable must be set to the path of the directory to be accessed.
Example: .\ca.pem
Rate limit
Batch sizeAllows you to configure the batch size.
IntervalThe interval in milliseconds in which the requests happen.
Inputs | Outputs
The incoming message is not used unless the query uses a variable from this object. The incoming message can be empty if you don't need any variables.
Example://query in config:
{ "kind":"{{kind}}" }
//incoming message:
{
_id: "135176441e008d9d0c5ba0cee61783ce",
kind: "CONTAINER"
}