Overview
The benefits of using this plug-in versus MongoDB’s REST API include:
NOTE: the detailed documentation PDF can be found by clicking the Download button
Key Features & Functionality
Provides the following Integration Operations:
READ Integration Operations:
WRITE Integration Operations:
Provides a set of Expression Functions for easily generating MongoDB Query Expression JSON without creating rules or concatenating strings.
Dear Team,
While testing this plugin we could see that the filter Collection type on the field does not work correctly.. here is an example:
Input
m_query( { m_field( "status", m_eq( "Completed" ) ) })
Expected : "{ "status": { "$eq": "Completed" } }"
Actual : "{ "status": { "$eq": "TypedValue[it=3,v=Completed]" } }"
Any idea why the text "TypedValue[it=3,v=" is getting added to the request while making call to MongoDB ?
I will take a look at this and submit an update asap.
For now you can work around it by constructing the JSON via standard expressions. Tip: to use special characters in Dictionary key names, surround the value with single-quotes like so:
a!toJson({ status: { '$eq': "Completed" } })