hello, i have list of user in array like this PosterId [18148422710, 13428633922, 221257741408, 563323559863] i want to get the post made by this users so i did something like this in my code
databaseId: Common.dataBasesId,
collectionId: Common.postCollection,
queries: [
Query.orderDesc('postedAt'),
Query.limit(15),
Query.equal('repliedTo', ''),
Query.search('uid', "[$feedPosterIds]"),
],
);```
i have already index uid for `fullText`
Nothing is being returned, the outputted lenght its zero, please how do i achieve this?
I'm not quite clear on what's happening here. What's your Collection schema?
Recommended threads
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...
- Custom Domains
Hi All, Should be a quick config issue. I'm setting up custom domains on the hosted version. I have verified the domain with the CNAME but appwrite isn't gene...