I would like to use manual logic inside of a Metabase question. When referencing "Past 30 days" for example, the Metabase query builder can dynamically update the question to reference the current date. When converted to a native query, however, the dates convert to hard-coded dates eg. 2017-11-30. I've seen answers elsewhere suggesting "new Date()" etc but none of these will work within Metabase's native query editor. I'm looking for something like..
...
{
"created_at": {"$gte": "new Date()"}
},
...
though this method does not work. Thanks in advance!