fixed search index collection schema for producers

This commit is contained in:
pushrbx 2024-10-28 16:22:48 +01:00
parent 705e0fbf36
commit 9553c2e7f9

View File

@ -72,6 +72,33 @@ class Producers extends JikanApiSearchableModel
]; ];
} }
public function getCollectionSchema(): array
{
return [
'name' => $this->searchableAs(),
'fields' => [
[
'name' => '.*',
'type' => 'auto',
],
[
'name' => 'titles',
'type' => 'string',
'optional' => false,
'infix' => true,
'sort' => true
],
[
'name' => 'url',
'type' => 'string',
'optional' => false,
'infix' => true,
'sort' => true
],
]
];
}
public function typesenseQueryBy(): array public function typesenseQueryBy(): array
{ {
return [ return [