Hi.
I have made a map from a input field to my database. Name of the input field is lMin. Whatever input I have here should make a query in the database. For now this looks like:
return '{"$and": [{"filter_high":{"$lte": "'+value+'"}},{"filter_low": {"$gte": "'+value+'"}}]}';
Only problem is that nothing shows up. If I put in the data from the database instead of the +value+, everything works fine. Can anyone see what I am doing wrong?
Thank you so much