Hello, Is it possible to query multiple fields with full-text indexation?
For example, I want to search "Adidas" in a collection of sneakers, and return both sneakers which name or brand match. A dirty solution would be to create and index a new field with both terms, but not ideal.
Also, can I query the content of a relation? (Find sneakers where sneaker->brand->name matches "Adidas")
Also, can I query the content of a relation? (Find sneakers where sneaker->brand->name matches "Adidas")
Unfortuently that is not supported yet
Is it possible to query multiple fields with full-text indexation?
Yes, But only using AND logic
You can see more details here https://discord.com/channels/564160730845151244/1108179606680383508/1108205828894375956
Great, thanks for the quick response!
Also, happy to tell you that after a few months following Appwrite's development I finally chose it as our default backend for my dev agency. Currently creating our first production-ready app π
That's great to know @42Tom
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...