
I have a react web app where the users get to make posts. I am able to obtain all the posts with listDocuments
. The things is, they don't have similar attributes. Some of them have the happy
attribute as true
, some have curious
as true
, some all are true
, some none, and so on.
I want to fetch the posts based on the attributes being true
. It is easy to obtain documents based on one attribute being true
, but I am looking for a way to consider more than one attribute. For example, I wanna fetch posts that have both happy
and curious
as true
. I did my research in the Appwrite forum and it seems like there is no straightforward way to fetch the posts based on multiple values. Or am I wrong?
Recommended threads
- how many Teams can be created?
I am creating an app where I will let users create groups. This could mean there will be many groups created by user, to isolate those groups properly I am thin...
- React native app login via Safari
Hi! I deployed for debug my React Native app in web, chrome everythink works well but in safari on mac and ios I cant login. I found this one error in safari co...
- Relationships restricted to a max depth ...
When I do query like: ``` await _databases.listDocuments( databaseId: AppwriteConfig.DATABASE_ID, collectionId: AppwriteConfig.SERVICES_COLLECTI...
