
Hello all, i am trying to do this request Query.search('text', params.search)
given the index i posted although i get error that attribute does not exist
Any idea?

the first parameter to the search query is the ATTRIBUTE KEY you want to search on. The index key is only a name for the index so you can differentiate multiple indexes more easily

So in that case i have to do Query.search('text', params.search), Query.search('description', params.search)
?
I want search to be performed as OR
not AND

what if i have multiple attributes in an full text key? how to grab this?

Since OR operations aren't supported yet, I suggest creating a new attribute that has all the data you want to search against. Then, create a full text index on that attribute

Thanks a lot
Recommended threads
- Is my approach for deleting registered u...
A few weeks ago, I was advised not to use the registered users' id in my web app. Instead, I store the publicly viewable information such as username and email ...
- Stuck in "deleting"
my parent element have relationship that doesnt exist and its stuck in "deleting", i cant delete it gives me error: Collection with the requested ID could not b...
- Help with 409 Error on Relationship Setu...
I ran into a 409 document_already_exists issue. with AppWrite so I tried to debug. Here's what I've set up: Collection A has 3 attributes and a two-way 1-to-m...
