Thank you @Andrea_Catalini. I have a follow up question if you don’t mind.
What you’re referring to is called Global Permission. If you set that to true then all users have the given access permissions for all partitions. But in your case you may instead want to use permissions for each partition
In my realm sync settings under define permissions, Read is set to true (global permission). Shouldn’t all the data be available in the collection to all users (regardless of userId) in this case? I only see data from a single user. Is this because of specifying a UserId when creating a realm in my code?
config = new PartitionSyncConfiguration(user.Id, user);
I’ll give permissions for each partition a try.
Thank you again.