mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
Introduce the UpdateBuilder type along with some update operations
This commit is contained in:
parent
adacc7977d
commit
b14cca2ad9
9 changed files with 382 additions and 39 deletions
|
@ -62,7 +62,7 @@ pub fn run(opt: Opt) -> anyhow::Result<()> {
|
|||
let result = index.search(&rtxn).query(query).execute().unwrap();
|
||||
|
||||
let mut stdout = io::stdout();
|
||||
let fields_ids_map = index.fields_ids_map(&rtxn)?.unwrap_or_default();
|
||||
let fields_ids_map = index.fields_ids_map(&rtxn)?;
|
||||
let documents = index.documents(&rtxn, result.documents_ids.iter().cloned())?;
|
||||
|
||||
for (_id, record) in documents {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue