dammyOriginal post
Rank 4: Virtual Machine
In the code below, will I always create new collection for users or it's just new document?
Plain text
databaseId: '[DATABASE_ID]', collectionId: '[COLLECTION_ID]', documentId: '[DOCUMENT_ID]', data: {}, );```Summary
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.