I have this collection
let tradeSchema = new mongoose.Schema({
status: String,
});
var Trade = mongoose.model('Trade', tradeSchema, 'trade')
module.exports = Trade;
status can be 'a', 'b','c' How can I find status 'a' and 'b' with single query?
Trade.find({
status:
})