The custom collection id is "members" and when I call it with sdk it doesn't work.
the name is equal to id, is it a problem?
I give all the permissions to logged user
I think it is an auth problem, after authentication how can I query the db within that session?
ok understood
I am passing the authenticated client object and it doesn't work
How can I make a query after a session is created?
Hi, please don't cross post : )
To fetch documents, use listDocuments()
. See https://appwrite.io/docs/client/databases?sdk=web-default#databasesListDocuments
sorry I've deleted it
You need to give permission to the collection as well
Recommended threads
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...