I'm trying to run a ReQL query to fetch the data between 2 epoch times, i have a field called "lastUpdatedDttm" using which i'm trying to run the query like below. The lastUpdatedDttm field type is "number" and is just new date().getTime()
r.db('my_db').table('my_table').getAll('/mypath', {
index: 'path' }) .filter(r.row('updatedBy').eq('id').and(r.row('lastUpdatedDttm').during(1512864000000, 1513209600000)))
The above query returns error, e: Not a TIME pseudotype:
Am i missing something in the query?