I have some documents in MongoDB like the following:
{
"no" : "ABC123",
"description": "The brown fox jumped over the lazy dog"
}
I want to be able to search through all such documents in the collection and return all documents which contain, say, the word "fox" in the description. Is this possible with ReactiveMongo? Thanks