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.
It gives the user the possibility to use a filter expression to retrieve documents, like in search.
Implement in the Meilisearch.Document.list method an internal conditional allowing the user to query the documents with the same method but using a new filter method.
When the user calls the get documents method with a filter argument, request POST /indexes/{index_uid}/documents/fetch using a JSON body containing an int offset, int limit, String[] fields and now String filter or String[] filter. ⚠️ If the method invocation does not contain a filter it should still call the previous implementation.
Todo:
Implement the Meilisearch.Document.list new behavior keeping the old behavior when possible.
The text was updated successfully, but these errors were encountered:
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#261
New implementation
Related to:
It gives the user the possibility to use a filter expression to retrieve documents, like in
search
.Implement in the
Meilisearch.Document.list
method an internal conditional allowing the user to query the documents with the same method but using a new filter method.When the user calls the get documents method with a
⚠️ If the method invocation does not contain a
filter
argument, requestPOST /indexes/{index_uid}/documents/fetch
using a JSON body containing anint offset
,int limit
,String[] fields
and nowString filter
orString[] filter
.filter
it should still call the previous implementation.Todo:
Meilisearch.Document.list
new behavior keeping the old behavior when possible.The text was updated successfully, but these errors were encountered: