Hi, I am creating a complex chat app having group chats, 1 to 1 chats and more features, so I want a _partiton key where I can check if a list contains a particular user or not.
SyncConfiguration config = new SyncConfiguration.Builder(app.currentUser()
,userId+":{ " +"\"%in\":id}")
.build();
I want a config something like that where userId is present in id which is a RealmList.
can you suggest a right way as “userId+”:{ " +""%in":id}"" this expression is afcorse not working.