@@ -223,10 +223,6 @@ filtering_guide_2: |-
223
223
'filter': 'release_date > 795484800 AND (director = "Tim Burton" OR director = "Christopher Nolan")'
224
224
})
225
225
filtering_guide_3 : |-
226
- client.index('movies').search('horror', {
227
- 'filter': 'director = "Jordan Peele"'
228
- })
229
- filtering_guide_4 : |-
230
226
client.index('movies').search('Planet of the Apes', {
231
227
'filter': 'rating >= 3 AND (NOT director = "Tim Burton")'
232
228
})
@@ -253,14 +249,6 @@ search_parameter_guide_highlight_1: |-
253
249
client.index('movies').search('winter feast', {
254
250
'attributesToHighlight': ['overview']
255
251
})
256
- search_parameter_guide_filter_1 : |-
257
- client.index('movies').search('n', {
258
- 'filter': 'title = Nightshift'
259
- })
260
- search_parameter_guide_filter_2 : |-
261
- client.index('movies').search('shifu', {
262
- 'filter': 'title = "Kung Fu Panda"'
263
- })
264
252
search_parameter_guide_matches_1 : |-
265
253
client.index('movies').search('winter feast', {
266
254
'matches': 'true'
@@ -334,15 +322,6 @@ documents_guide_add_movie_1: |-
334
322
}])
335
323
getting_started_check_task_status_md : |-
336
324
client.index('movies').get_task(0)
337
- search_guide_1 : |-
338
- client.index('movies').search('shifu', {
339
- 'limit': 5,
340
- 'offset': 10
341
- })
342
- search_guide_2 : |-
343
- client.index('movies').search('Avengers', {
344
- 'filter': 'release_date > 795484800'
345
- })
346
325
getting_started_add_documents_md : |-
347
326
```bash
348
327
pip3 install meilisearch
@@ -444,21 +423,10 @@ faceted_search_facets_distribution_1: |-
444
423
client.index('movies').search('Batman', {
445
424
'facetsDistribution': ['genres']
446
425
})
447
- faceted_search_walkthrough_filterable_attributes_1 : |-
448
- client.index('movies').update_filterable_attributes([
449
- 'director',
450
- 'producer',
451
- 'genres',
452
- 'production_companies'
453
- ])
454
426
faceted_search_walkthrough_filter_1 : |-
455
427
client.index('movies').search('thriller', {
456
428
'filter': [['genres = Horror', 'genres = Mystery'], 'director = "Jordan Peele"']
457
429
})
458
- faceted_search_walkthrough_facets_distribution_1 : |-
459
- client.index('movies').search('Batman', {
460
- 'facetsDistribution': ['genres']
461
- })
462
430
post_dump_1 : |-
463
431
client.create_dump()
464
432
get_dump_status_1 : |-
0 commit comments