Hello,
First, thank you for this very useful bundle !
It would be great to be able to declare the mapping with :
<?php
#[TypesenseCollection(default_sorting_field: 'title')]
class Book {
#[TypesenseField, TypesenseId]
private ?int $id = null;
#[TypesenseField(name: 'book_id')]
private ?string $title = null:
...
}
- with yaml/xml resources files in ordre to be able to declare in a bundle a mapping with the possibility to override it.
A good example of this is Api-Platform : you can declare ApiResource with attributes or yaml files.
Hello,
First, thank you for this very useful bundle !
It would be great to be able to declare the mapping with :
A good example of this is Api-Platform : you can declare ApiResource with attributes or yaml files.