I have in my Algolia engine the next "entity"
Professional
objectID: "eyJpZCI6OX0="
...
status: id: 1
And I like to make a search just with the ones that have status = 1. I've tried this:
$searchResult = $this->get('algolia.indexer')->rawSearch(Professional, $data, [
'hitsPerPage' => 10,
'page' => 1,
'facetFilters' => 'status:1',
]);
Seems that im nos using facetFilters correctly, any help? Thanks