-
Notifications
You must be signed in to change notification settings - Fork 14
Description
This issue gathers the changes related to the v1.1.0 of Meilisearch that will impact the integrations team.
📅 Release date: June 5th, 2023
The whole milestone of v1.2.0 is here!
tier #1
. Some of the features described here for tier #2
will also be ready for the release day. Check the features below to understand which tier will receive which feature.
🖖 Click here to check the current tiers state of the integrations:
Understand everything about tiers here.
Integration | Tier |
---|---|
Javascript | #1 |
PHP | #1 |
Instant Meilisearch | #1 |
Python | #1 |
Ruby | #1 |
Go | #1 |
Strapi | #2 |
.NET | #2 |
Rails | #2 |
Rust | #2 |
Symfony | #3 |
Java | #3 |
Firebase | #3 |
docs-searchbar.js | #3 |
Dart | #3 |
Swift | #3 |
Vuepress | #3 |
Gatsby | #3 |
Delete documents by filter
Related to:
- issue: Delete and get documents by filter meilisearch#3477
- spec: Get and delete documents by filter specifications#236
It allows the user to use a filter expression to remove documents.
Since there is already a method called deleteDocuments(uids)
/delete_documents(uids)
in the SDKs, and this method is calling the route POST /indexes/:index_uid/documents/delete-batch
, the requirements to implement the new way is to create a conditional internally to check the presence of the new parameter filters
and then call the new method POST /indexes/:index_uid/documents/delete
.
When the developer uses the old ids
argument, it should keep calling the old implementation.
This will avoid any silent failures the users may find.
For example, in the Ruby SDK:
# Public: Delete documents from an index
#
# documents_ids - An array with document ids (deprecated, optional)
# filter - A hash containing a filter that should match documents. Available ONLY with Meilisearch v1.2 and newer (optional)
#
# Returns a Task object.
def delete_documents(documents_ids = nil, filter: nil)
if documents_ids
http_post "/indexes/#{@uid}/documents/delete-batch", documents_ids
else
http_post "/indexes/#{@uid}/documents/delete", { filter: filter }
end
end
Extra: Add inline documentation for the method, explaining the availability of the filter syntax only for Meilisearch v1.2 and newer.
Extra: Mark the document_ids
parameter as deprecated
. eg. @Deprecated('migration')
on Java/Dart, Obsolete on C#, etc. Add a library if necessary.
Extra: Add a try
/catch
to detect the error and give the user a hint about the possibility of a version mismatch between the SDK version and the instance version. Check this PR for an example in JavaScript: meilisearch/meilisearch-js#1492
Extra: General recommendations:
- For languages where method overloading is available, use the overloading.
- For languages where a builder is available, use the builder pattern.
🤩 Affected integrations: All the integrations from tier #1
.
Retrieve documents by filter
Related to:
- issue: Delete and get documents by filter meilisearch#3477
- spec: Specify the new fetch documents route specifications#234
Gives the user the possibility to use a filter expression to retrieve documents, like in search
.
Following the same concept in the previous section, deleting by filters, this Meilisearch version introduces a new way of finding documents by introducing a new route and arguments.
Implement in the getDocuments
/get_documents
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
.
filter
it should still call the previous implementation.
🤩 Affected integrations: All the integrations from tier #1
.
IS EMPTY
filter operator
Related to:
- issue:
IS NULL
filter operator meilisearch#3615 - spec: Filter operators -
IS NULL
andIS EMPTY
filter operators specifications#232
Add the IS EMPTY
new operator to the filterExpression
DSL on the Dart SDK.
🤩 Affected integrations: Only meilisearch-dart
.
IS NULL
filter operator
Related to:
- issue:
IS NULL
filter operator meilisearch#3615 - spec: Filter operators -
IS NULL
andIS EMPTY
filter operators specifications#232
Add the IS NULL
new operator to the filterExpression
DSL on the Dart SDK.
🤩 Affected integrations: Only meilisearch-dart
.