We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09210c3 commit 564fd90Copy full SHA for 564fd90
.code-samples.meilisearch.yaml
@@ -110,14 +110,14 @@ get_all_tasks_1: |-
110
.unwrap();
111
get_all_tasks_filtering_1: |-
112
let mut query = TasksSearchQuery::new(&client)
113
- .with_index_uid(["movies"])
+ .with_index_uids(["movies"])
114
.execute()
115
.await
116
117
get_all_tasks_filtering_2: |-
118
119
- .with_status(["succeeded", "failed"])
120
- .with_type(["documentAdditionOrUpdate"])
+ .with_statuses(["succeeded", "failed"])
+ .with_types(["documentAdditionOrUpdate"])
121
122
123
0 commit comments