Open
Description
Description
It would be useful to have the possibility of indexing entity to different indices.
Basic example
meilisearch:
indices:
- name: supported
class: App\Entity\MyEntity
index_if: isSupported
- name: completed
class: App\Entity\MyEntity
index_if: isCompleted
Currently private function setIndexIfMapping(): void
of MeilisearchService.php maps only one IndexIfMapping per entity.