Hello, I created an index of type fulltext with multiple attributes. I'm using Query.search() but it's giving this error. Can you guys help me?
The first parameter to Query.search() should be the attribute you want to search on
Wouldn't Query.search("body", "dog") search only in 'body'? What if i want to search 'dog' in the title at the same time?
if you want something like:
title contains dog OR subtitle contains dog OR body contains doc
you'll either need to make separate queries or create an attribute that has all of the data and search on that attribute
You might want to 👍🏼 this related issue: https://github.com/appwrite/appwrite/issues/2740
thank you!
Recommended threads
- createCollection Deprecated
- All My Project is Gone
Hello everyone, please help. Why have all my projects suddenly disappeared? I received a warning via email about one of my projects being paused. When I clicked...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...