Hi,
when I try to query using createdAt it works but using block_timestamp the result is always empty
so example:
this works
query.greaterThan(“createdAt”, new Date(‘2014-10-10’).toISOString());
this returns empty
query.greaterThan(“block_timestamp”, new Date(‘2014-10-10’).toISOString());
(block_timestamps are all larger than that date value)
block_timestamp is also shown as Date on the dashboard, just like createdAt
is there anything else I need to make to query with block_timestamp?
thanks