I have searched for the usage of conditional statements(<,>,<=,etc..,) in C API documentation in the link http://api.mongodb.org/c/current/. But I am unable to find it.
Example:
The mongo shell query is
db.users.find({age: {$gt: 3}}, {})
I want the equivalent C statement for the above.
For example, query:
would be written like this: