Just tried this query. Is this what you are looking for?
This query shows the employee whose name is Susan and the Age is greater than 25. Replace it with 0 and Monday in your case
And here is the query.
{"$and": [{"Age": {"$gt": 25} },{"Name": "Susan"}]}
The same thing you can dynamically use in jQuery I guess
M&M