I have a Firestore collection with documents that have a field 'createdAt'. This is set as a firestore.server.timestamp.
I would like to get the documents that have createdAt >= someDate.
{{ Math.round((new Date(new Date().setDate(new Date().getDate() - 30)))/1000) }}
I set the retool query to be
This doesn't produce data.
I certainly have data that should pick up from the query.
Tried many variations (even trying to send UTC string formated time.
I couldn't find a clear example in the docs....did find one for setting the time and it does (more or less) the reverse of this (sends a integer).
Thanks