Skip to content

Commit 9713571

Browse files
Merge branch 'v0.28' into v0.28-dumps
2 parents 1690f99 + 45b5f82 commit 9713571

26 files changed

+449
-288
lines changed

.code-samples.meilisearch.yaml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ get_one_index_1: |-
88
-X GET 'http://localhost:7700/indexes/movies'
99
list_all_indexes_1: |-
1010
curl \
11-
-X GET 'http://localhost:7700/indexes'
11+
-X GET 'http://localhost:7700/indexes?limit=3'
1212
create_an_index_1: |-
1313
curl \
1414
-X POST 'http://localhost:7700/indexes' \
@@ -79,18 +79,24 @@ search_post_1: |-
7979
search_get_1: |-
8080
curl \
8181
-X GET 'http://localhost:7700/indexes/movies/search?q=american%20ninja'
82-
get_task_by_index_1: |-
83-
curl \
84-
-X GET 'http://localhost:7700/indexes/movies/tasks/1'
8582
get_all_tasks_1: |-
8683
curl \
8784
-X GET 'http://localhost:7700/tasks'
8885
get_task_1: |-
8986
curl \
9087
-X GET 'http://localhost:7700/tasks/1'
91-
get_all_tasks_by_index_1: |-
88+
get_all_tasks_filtering_1: |-
89+
curl \
90+
-X GET 'http://localhost:7700/tasks?indexUid=movies'
91+
get_all_tasks_filtering_2: |-
92+
curl \
93+
-X GET 'http://localhost:7700/tasks?status=succeeded,failed&type=documentAdditionOrUpdate'
94+
get_all_tasks_paginating_1: |-
95+
curl \
96+
-X GET 'http://localhost:7700/tasks?limit=2&from=10
97+
get_all_tasks_paginating_2: |-
9298
curl \
93-
-X GET 'http://localhost:7700/indexes/movies/tasks'
99+
-X GET 'http://localhost:7700/tasks?limit=2&from=8
94100
get_one_key_1: |-
95101
curl \
96102
-X GET 'http://localhost:7700/keys/d0552b41536279a0ad88bd595327b96f01176a60c2243e906c52ac02375f9bc4' \
@@ -529,7 +535,7 @@ getting_started_add_documents_md: |-
529535
```
530536
getting_started_check_task_status: |-
531537
curl \
532-
-X GET 'http://localhost:7700/indexes/movies/tasks/0'
538+
-X GET 'http://localhost:7700/tasks/0'
533539
getting_started_search_md: |-
534540
```bash
535541
curl \

0 commit comments

Comments
 (0)