Reputation: 2301
Consider I have a collections which it's document are like this :
{
"name": "some-name",
"age": 23,
"foods" : ["pizza", "cola", "bread", "hotdog"]
}
what I need to achieve is I need to find all documents which has at least one food item which is like for example "pi". so I want one of array items to be like search query string.
Upvotes: 0
Views: 238