I have user schema
{
phone:'String'
}
My query field is phone and i have an array of phone numbers like this ['1233','2134','43433']
to query;
I had to query user collection that this phone numbers are present or not in collection...
I wanted to complete this operation in single query rather then using async.each or some asynchronous operation.
Is it possible with single operation?