I'm setting document permissions on the server when creating a document using Appwrite. I’m using Permission.read(Role.user(userId)) to allow a specific user access. However, on the client side (also using Appwrite), the document is not being fetched—even though the logged-in user matches the one in the permission. Why is the client not seeing the document despite the correct user-level permission being set?
TL;DR
Developers are encountering an issue with permission on the server when using Appwrite to set document permissions. Despite setting Permission.read(Role.user(userId)), the document is not being fetched on the client side.