|
3 | 3 | # the documentation on build |
4 | 4 | # You can read more on https://github.com/meilisearch/documentation/tree/master/.vuepress/code-samples |
5 | 5 | --- |
| 6 | +async_guide_filter_by_date_1: |- |
| 7 | + with filter: { afterEnqueuedAt: 2020-10-11T11:49:53.000Z } |
| 8 | +
|
| 9 | +async_guide_multiple_filters_1: |- |
| 10 | + with filter: { indexUids: movies, types: ["documentAdditionOrUpdate","documentDeletion"], statuses: ["processing"] } |
| 11 | +
|
| 12 | +async_guide_filter_by_id_1: |- |
| 13 | + with filter: { uids: [5, 10, 13] } |
| 14 | +
|
| 15 | +async_guide_filter_by_status_1: |- |
| 16 | + with filter: { status: ["failed", "canceled"] } |
| 17 | +
|
| 18 | +async_guide_filter_by_type_1: |- |
| 19 | + with filter: { types: ["dumpCreation", "indexSwap"] } |
| 20 | +
|
| 21 | +async_guide_filter_by_index_uid_1: |- |
| 22 | + with filter: { indexUids: ["movies"] } |
| 23 | +
|
| 24 | +delete_task_1: |- |
| 25 | + with filter: { uids: [1, 2] } |
| 26 | +
|
| 27 | +cancel_task_1: |- |
| 28 | + with filter: { uids: [1,2] } |
| 29 | +
|
| 30 | +async_guide_canceled_by: |- |
| 31 | + with filter: { canceledBy: [9] } |
| 32 | +
|
| 33 | +swap_indexes_1: |- |
| 34 | + with data: { "indexes":[ "indexA", "indexB" ], "indexes":[ "indexX", "indexY" ] } |
| 35 | +
|
| 36 | +search_parameter_guide_hitsperpage_1: |- |
| 37 | + with queryparams: { "q": "", "hitsPerPage": 15 } |
| 38 | +
|
| 39 | +search_parameter_guide_page_1: |- |
| 40 | + with queryparams: { "q": "", "page": 2 } |
| 41 | +
|
6 | 42 | getting_started_typo_tolerance: |- |
7 | 43 |
|
8 | 44 | get_one_index_1: |- |
@@ -49,9 +85,9 @@ get_all_tasks_1: |- |
49 | 85 | client.getTasks() |
50 | 86 | get_task_1: |- |
51 | 87 | client.getTask(1) |
52 | | -get_all_tasks_filtering_1: |- |
| 88 | +>>>>>>>>>>> REMOVE_ME get_all_tasks_filtering_1: |- |
53 | 89 | client.getTasks({ indexUid: ['movies'] }) |
54 | | -get_all_tasks_filtering_2: |- |
| 90 | +>>>>>>>>>>> REMOVE_ME get_all_tasks_filtering_2: |- |
55 | 91 | client.getTasks({ status: ['succeeded', 'failed'], type: ['documentAdditionOrUpdate'] }) |
56 | 92 | get_all_tasks_paginating_1: |- |
57 | 93 | client.getTasks({ limit: 2, from: 10 }) |
|
0 commit comments