Hi
How am I able, from one DB query, to also include the choice of a dropdown list?
In a before send mapping, I have for the query:
return '{"$and":[{"lminMin":{"$lte":"'+value+'"}},{"lminMax": {"$gte":"'+value+'"}},{"Weather":"Windy"}]}';
When I do it like this, it does the query, but only shows the ones with "Windy" in the DB.
I would like to make this dynamic, so that it would look in a dropdown and use the selected option instead. How is this possible?