so my question is. Is it possible to query a document for multiple values example
var channelLinked = {'channel 1': '' || 'channel 2': ''}
db1.collection('proxies').find(channelLinked).toArray(function(err,result){
console.log(result);
db.close()
})
i know the above code is invalid but thats the only example i can think of.