I read that stemming works on multi-language but Italian isn't supported right now. Is this the reason for the current behaviour?
Yes as per MS document Multi-language support Currently available in below languages:
- en-US (English)
- de-DE (German)
- es-ES (Spanish)
- fr-FR (French)
What is a possible workaround to include "COOPERATIVA" in my results?
You can now use the LIKE
keyword to do text searches in Azure Cosmos DB SQL (core) API. It is a new string search options in Azure Cosmos DB.
Here’s a simple example that uses LIKE with the % wildcard character to return all items with a description that contains “COOP”.
Query:
SELECT * FROM c
WHERE c.name LIKE "%COOP%"
I hope this has been helpful! Kindly consider upvoting the Answer if the information provided is helpful. This can assist other community members in resolving similar issues. Happy to help you.