Skip to content

Commit 5d73023

Browse files
Remove experimental tags from STARTS WITH (#3333)
1 parent 301cf97 commit 5d73023

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

learn/filtering_and_sorting/filter_expression_reference.mdx

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -193,14 +193,10 @@ curl \
193193
"containsFilter": true
194194
}'
195195
```
196-
197-
This will also enable the [`STARTS WITH`](#starts-with) operator.
198196
</Note>
199197

200198
### `STARTS WITH`
201199

202-
<NoticeTag type="experimental" label="experimental" />
203-
204200
`STARTS WITH` filters results whose values start with the specified string pattern.
205201

206202
The following expression returns all dairy products whose name start with `"kef"`:
@@ -216,21 +212,6 @@ dairy_products.name NOT STARTS WITH kef
216212
NOT dairy_product.name STARTS WITH kef
217213
```
218214

219-
<Note>
220-
This is an experimental feature. Use the experimental features endpoint to activate it:
221-
222-
```sh
223-
curl \
224-
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
225-
-H 'Content-Type: application/json' \
226-
--data-binary '{
227-
"containsFilter": true
228-
}'
229-
```
230-
231-
This will also enable the [`CONTAINS`](#contains) operator.
232-
</Note>
233-
234215
### `NOT`
235216

236217
The negation operator (`NOT`) selects all documents that do not satisfy a condition. It has higher precedence than `AND` and `OR`.

0 commit comments

Comments
 (0)