We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
search_options
1 parent a86ca8e commit 6653cb9Copy full SHA for 6653cb9
src/Typesense/Query.php
@@ -3,6 +3,7 @@
3
namespace StatamicRadPack\Typesense\Typesense;
4
5
use Illuminate\Pagination\Paginator;
6
+use Illuminate\Support\Arr;
7
use Statamic\Search\QueryBuilder;
8
9
class Query extends QueryBuilder
@@ -116,7 +117,7 @@ private function ordersToSortBy(array $orders): string
116
117
118
private function getApiResults()
119
{
- $options = [];
120
+ $options = Arr::get($this->index->config(), 'settings.schema.search_options');
121
122
if ($this->page && $this->perPage) {
123
$options['page'] = $this->page;
0 commit comments