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.
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#213
matchingStrategy
yet. To close this issue #207 should be done first.Add the new code samples into the file
.code-samples.meilisearch.yml
:TODO:
search_parameter_guide_matching_strategy_1
big fat liar
with"matchingStrategy": "last"
in amovies
index.search_parameter_guide_matching_strategy_2
big fat liar
with"matchingStrategy": "all"
in amovies
index.For example, in Javascript, the code-samples required to fix the issue are:
client.index('movies').search('big fat liar', { matchingStrategy: 'last' })
and alsoclient.index('movies').search('big fat liar', { matchingStrategy: 'all' })
so the final version inside of the samples should be:
The text was updated successfully, but these errors were encountered: