Fetch via date query on mongodb

How would I fire a query on date field of mongodb like greater than, less than, or equal to particular date, through dreamfactory rest apis?
Please help

You would POST a JSON body with the filter parameters you wish to use.

This blog post covers it in detail. This forum thread also provides examples.

E.g., from the blog, to retrieve records where date > 2012-01-01T00:00:00.000 the included filter payload would be

{"filter": { "date": { "$gt": "2012-01-01T00:00:00.000" } } }