/**
* query: The query in MQL.
* First search the text using $match
*/
{
$text:{$search:'Clara De'}
}
-------------
/**
* specifications: The fields to
* include or exclude.
*. Project results
*/
{
_id:1,
name:1,
'score':{$meta:'textScore'}
}
----------
/**
* query: The query in MQL.
* $match again
*/
{
score:{ $gte: 0.2 }
}