Skip to content

Commit 960630b

Browse files
authored
Update README.md
1 parent abb0caa commit 960630b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ $hits = $searchQuery
4343

4444
```php
4545
$searchQuery->where('field', 'value');
46-
$searchQuery->where('field', '>', 'value');
46+
$searchQuery->where('field', '>', 'value'); // supported operators: `=` `!=` `>` `<` `>=` `<=`
4747
$searchQuery->whereNot('field', 'value'); // equals `where('field', '!=', 'value')`
4848
```
4949

50-
List of supported operators: `=, !=, >, <, >=, <=`.
51-
5250
```php
5351
$searchQuery->whereIn('field', ['value1', 'value2']);
5452
$searchQuery->whereNotIn('field', ['value1', 'value2']);

0 commit comments

Comments
 (0)