I am trying to figure out how I can make a request to the REST API for Parse that can accept a range against the createdAt column. I can issue the following constraint which works but when I try a compound query that tries to do a GT and a LT constraint I get a Bad Request error.
var requestParams = 'where={ "createdAt": { "$gt": { "__type": "Date", "iso": "' + startDate + '" } } } ';
Is this possible with the REST API?