
hi im using flutter i can see option for getting list of documents but i want to get list of collections.

You need to use server sdk https://appwrite.io/docs/server/databases?sdk=dart-default#databasesListCollections

If you need to do that on client side, you can create a collection with documents who contains all the collections names and if needed, their corresponding ID. You can create a function to update it automatically or handle that manually by creating a document every time you create a collection (and updating them manually) or also get the data from the function with the server SDK as bhksar said

@kanhaiya lal bohra Did you get it or do you need more help?
Recommended threads
- Type String is not a subtype of type int...
In flutter using appwrite: ^17.1.0, ```DocumentList response = await databases!.listDocuments( databaseId: "xxx", collectionId: "xxx", ...
- How to pass session from browser to a mo...
I have a self-hosted Appwrite container. I also have a www page (A) which should acts as login page for different www services (B). User click login in B, is re...
- Two steps signIn with one user:
'm using appwrite to try two phase login, step 1: await account.createAnonymousSession(); or final appwriteUser = await account.create( ...
