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.
2 parents a86ca8e + 4a4f150 commit b462a07Copy full SHA for b462a07
src/Typesense/Query.php
@@ -34,7 +34,7 @@ private function wheresToFilter(array $wheres): string
34
$operator = $filterBy != '' ? ($where['boolean'] == 'and' ? ' && ' : ' || ') : '';
35
36
if ($where['type'] == 'Nested') {
37
- $filterBy .= $operator.' ( '.$this->wheresToFilter($where->query['wheres']).' ) ';
+ $filterBy .= $operator.' ( '.$this->wheresToFilter($where['query']->wheres).' ) ';
38
39
continue;
40
}
0 commit comments