Rank 1: Thread
Hi! Is there a way to dynamically build the listDocuments query? In the app, the "base" query I have is
Query.equal('category', 'expenses'), Query.greaterThan('amount', 100), ];
final response = await databases.listDocuments( '<DATABASE_ID>', '<COLLECTION_ID>', query, );I would like to have a checkbox (or a switch) for a select date and then have this date added to the query parameters. How should I do it?
TIA