mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-29 23:16:26 +00:00 
			
		
		
		
	add the exhaustive nb hits to be ISO, currently it's always set to false
This commit is contained in:
		| @@ -41,6 +41,7 @@ pub struct SearchQuery { | ||||
| pub struct SearchResult { | ||||
|     pub hits: Vec<Map<String, Value>>, | ||||
|     pub nb_hits: u64, | ||||
|     pub exhaustive_nb_hits: bool, // currently this field only exist to be ISO and is always alse | ||||
|     pub query: String, | ||||
|     pub limit: usize, | ||||
|     pub offset: usize, | ||||
| @@ -107,6 +108,7 @@ impl Index { | ||||
|         }; | ||||
|  | ||||
|         let result = SearchResult { | ||||
|             exhaustive_nb_hits: false, // not implemented, we use it to be ISO | ||||
|             hits: documents, | ||||
|             nb_hits, | ||||
|             query: query.q.clone().unwrap_or_default(), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user