OFF DOC: https://github.com/Exercise/FOQElasticaBundle
Exemples utiles: https://hotexamples.com/examples/-/Elastica%255CQuery%255CMatch/setFieldFuzziness/php-elastica%255cquery%255cmatch-setfieldfuzziness-method-examples.html
$finder = $this->container->get('fos_elastica.finder.app.job');
// filter only activated and not expired
$filter = new \Elastica\Query\BoolQuery();
$filter->addMust(new \Elastica\Query\Term(array('isActivated' => true)));
$rangeQuery = new \Elastica\Query\Range();