In the code below, will I always create new collection for users or it's just new document?
TypeScript
databaseId: '[DATABASE_ID]',
collectionId: '[COLLECTION_ID]',
documentId: '[DOCUMENT_ID]',
data: {},
);```
TL;DR
The user is wondering if they will always create a new collection for users or if it's just a new document. The code provided is used to create a new document in a collection within a specific database. It is not creating a new collection.do you mean what this code is doing? its jsut making a document
ok
I appreciate you ma @joeyouss
[CLOSED] Data for users
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...