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?