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
- Seed db
hello there... is this correct way to seed appwrite
- Query Appwrite
Hello, I have a question regarding Queries in Appwrite. If I have a string "YYYY-MM", how can I query the $createdAt column to match this filter?
- Type Mismatch in AppwriteException
There is a discrepancy in the TypeScript type definitions for AppwriteException. The response property is defined as a string in the type definitions, but in pr...