
how to do OR on Query.search("title", "key words")
?? i want to search if a String attribute
contain "word1" or "word2" .
if it was Query.equal("title", ["Iron Man","Super man"])
i could have used a List. but for full text search ,i cant use list. so how to do a get all documents in which the 'title' contains 'word2' or 'word2'
Query ?? do i have to do seperate query for each words and then combine the results ?

So search uses mariadb's full text search. As such, you can pass space separated keywords for the search value.
FYI, https://github.com/appwrite/appwrite/discussions/5005#discussioncomment-4681079
Recommended threads
- Creating a relationship with nested obje...
{ "data": { "name": "DiDi", "type": "Software Development", "userJobs": [{ "$id": "68cbf1e2003612fb13ca", "j...
- Realtime integration with SSR auth
Hey, I have a nextjs website with SSR auth, works great. I use a session client for user verification and an admin client with API key. Both is used with node-...
- Adding "name" column to table creates 2-...
As stated, im adding the "name" column to one table, it adds 4 duplicates. In another table it adds 3 duplicates, and when I delete 1 of them, all duplucates di...
