How are permissions working with relations? If I have a collection where I have access to and there is a document liked to a collection I don’t have permissions for… What will happen if I request? Will the relation display?
It seems like you need to have access permissions to all documents.
You can see more detail here: https://appwrite.io/docs/databases-relationships#permissions
Recommended threads
- The current user is not authorized to pe...
I want to create a document associated with user after log in with OAuth. The user were logged in, but Appwrite said user is unauthorized. User is logged in wi...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...