Hey π
I use this method to create a query array:
let querys: string[] = [];
combinations.forEach(combination => {
querys.push(Query.search('ingredientNames', combination.nameNormalized).toString());
});
Search word is e.g. bohnen_(weiss) . => "search(ingredientNames, [bohnen_(weiss)])" There is also an underscore between bohnen and (weiss) that cannot be displayed here. But entries with "pfefferkoerner_(weiss)" are also found...
That doesn't make any sense to me. π€
Any Idea ?
thanks
Hm, okay. It seems that no special characters or spaces can be used with the ".search" method, otherwise it will separate and search for both?
@VincentGe can you take a look at this?
I believe special characters are not searchable in MariaDB fulltext indexes
This might be related
You may have to be creative with your indexes for searching π
thanks π I dont use special characters anymore and it worked fine.
Recommended threads
- Problem with Google Workspace at DNS Rec...
Hello, I bought a domain at Namecheap, and Google Workspace used to work there, but now that I switched from Custom DNS to Appwrite's nameservers, it doesn't w...
- change role of a team member in Appwrite
It's not possible to add/change roles of a team meber in Appwrite Frontend. When you click on a member of a team you get forwarded to the configuration page of ...
- Session not found. Please run appwrite l...
I have encounter an issue with appwrite CLI They asking for a login session but in the doc, itβs mention that only setup client with endpoint / api key is enou...