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
- Empty listRows() response
Hi there, I'm shehryar, I'm new to react native and appwrite as well, I'm following a tutorial, what's surprising is the listRows({databaseId, tableId, queries}...
- Skip total counts crash the query
Hello, When adding the total parameter (either true, the default, or false) to the listRows function, it raises the following error: `type 'bool' is not a sub...
- Relationships and Realtime
Since now Relationship attributes are only returned when explicitly queried, how does this change reflect in Realtime? If a listener is listening to a row from ...