You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository.
Also, if you are a maintainer, please add any clarification and instructions about this issue.
Sorry if this is already wholly/partially implemented. Feel free to let me know about the state of this issue in the repo.
This issue is divided into two sections, first, you need to make the implementation, and second, you must update the code-samples (no one likes outdated docs, right?).
Add support for receiving a new key, attributesToSearchOn (an array of field names), to enable running searches over a subset of searchableAttributes without modifying Meilisearch’s index settings.
Code samples
Inside of this file: .code-samples.meilisearch.yml:
Create a new entry with this key search_parameter_guide_attributes_to_search_on_1 containing a call to the search method using the new behavior from the index movies using attributesToSearchOn with an array of one string ["overview"].
Add a new code sample to the .code-samples.meilisearch.yml file:
Use this as a reference if the previous description was not helpful:
search_parameter_guide_attributes_to_search_on_1: |-
POST 'http://localhost:7700/indexes/movies/search'
with data: {
"q": "adventure", "attributesToSearchOn": ["overview"]
}
TODO:
Add the ability to receive a new param in the search method called attributesToSearchOn.
Add integration tests
Update the code-samples accordingly
The text was updated successfully, but these errors were encountered:
519: Update version for v0.24.2 r=curquiza a=curquiza
## 🚀 Enhancements
* Re-export public structures for better import path (#493) `@adriantombu`
* Added function for sending NDJSON documents (#494) `@carlosb1`
* Add missing startedAt field in EnqueuedTask (#485) `@sebastiantoh`
* #499 (attributesToSearchOn) (#510) `@brendon-shf`
* Add total field to get-tasks route (#509) `@hmacr`
* Implement client for experimental-features API (#516) `@hmacr`
Co-authored-by: curquiza <clementine@meilisearch.com>
Also, if you are a maintainer, please add any clarification and instructions about this issue.
Sorry if this is already wholly/partially implemented. Feel free to let me know about the state of this issue in the repo.
Related to meilisearch/integration-guides#280
This issue is divided into two sections, first, you need to make the implementation, and second, you must update the code-samples (no one likes outdated docs, right?).
New implementation
Related to:
Add support for receiving a new key,
attributesToSearchOn
(an array of field names), to enable running searches over a subset ofsearchableAttributes
without modifying Meilisearch’s index settings.Code samples
Inside of this file:
.code-samples.meilisearch.yml
:search_parameter_guide_attributes_to_search_on_1
containing a call to thesearch
method using the new behavior from the indexmovies
usingattributesToSearchOn
with an array of one string["overview"]
.Add a new code sample to the
.code-samples.meilisearch.yml
file:Use this as a reference if the previous description was not helpful:
TODO:
search
method calledattributesToSearchOn
.The text was updated successfully, but these errors were encountered: