File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed
learn/filtering_and_sorting Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff 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
206202The following expression returns all dairy products whose name start with ` "kef" ` :
@@ -216,21 +212,6 @@ dairy_products.name NOT STARTS WITH kef
216212NOT 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
236217The negation operator (` NOT ` ) selects all documents that do not satisfy a condition. It has higher precedence than ` AND ` and ` OR ` .
You can’t perform that action at this time.
0 commit comments