CollectionID is a single string that shows both database name and collection name together:
Default database name is ExWeiv, if you have a database named as ExWeiv you can directly use collection name.
Syntax: database/collection;
const dbName = "ExWeiv"const collectionName = "WeivData"const collectionId = `${dbName}/${collectionName}`; Copy
const dbName = "ExWeiv"const collectionName = "WeivData"const collectionId = `${dbName}/${collectionName}`;
Description
CollectionID is a single string that shows both database name and collection name together:
Syntax: database/collection;
Example