in the appwrite console i can add multiple users to read permission of db document but when im trying to implement that in apple-appwrtie-sdk thats crash its a bug ? for example i have two users -> user1_ID = "a1", user2_ID = "a2" i use database.createDocument(databaseId:"databaseId",collectionID:"collectionID",documentID:ID.unieqe() ,Data:[data...], Permissions:[Permission.read(Role.user(user1_ID), Permission.read(Role.user(user2_ID) ) ]) error : the bug Permissions must be one of: (any, users, user:user1_ID, user:user1_ID/verified, users/verified, label:admin)
Recommended threads
- Seed db
hello there... is this correct way to seed appwrite
- Query Appwrite
Hello, I have a question regarding Queries in Appwrite. If I have a string "YYYY-MM", how can I query the $createdAt column to match this filter?
- Error: User (role: guests) missing scope...
I want to send a verification code to the user and the given phone number and check it and create a session right after the user entered the secret. For me that...