Reputation: 73
My schema has a string field companyName
in my document.
I get an object from the query string as {companyName:"Amazon,Microsoft"}}
.
How do I get back all documents that have company name either Amazon or Microsoft?
Right now I am changing the object to {companyName:{$regex:"Amazon Microsoft",$options:'i'}}
and passing it to find()
method but it is returning an empty array
Upvotes: 2
Views: 907