
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
- Document already existed
Hi, I am trying to add a document via cloud function using nodejs22. Everytime I do `await db.createDocument( dbid, collectionid, customDocId, data);` it will g...
- Image Transformation Issue
My project was working with images normally, I never processed them or anything, and today, suddenly when trying to add or update images from the project, it st...
- easiest way to ban an IP from appwrite
for example, lets say that i have an app where people can post cars, and someone is constantly spamming my app with trucks, is there a way to ban that user IP s...
