How can I query a date column with a where clause based on the current date?
The following where clause works:
{'DateStart': {"$gte": "2014-07-14 00:00:00.000"}}
I want to replace the date part with the current date. Is there a current date function I can call? eg.
{'DateStart': {"$gte": CurrentDate()}}