I want to delete a Firestore collection and its sub-collections from a NodeJS script (not from a Cloud Function). I cannot get it right with project selection.
To be clear, I want to perform the same as this CLI command, but from a script:
firebase -P my-project firestore:delete fruits --recursive
Here is my attempt:
const admin = require("firebase-admin");
const serviceAccount = require("path_to_my_service_account_key.json");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: `https://my-project.firebaseio.com`,
});
const firebaseTools = require("firebase-tools");
firebaseTools.use("my-project");
async function deleteCollection(collectionName) {
const ref = admin.firestore().collection(collectionName);
const res = await firebaseTools.firestore.delete(ref);
console.log("delete success:", res);
}
deleteCollection("fruits");
It throws "TypeError: Cannot create property 'project' on string 'easypinger-test'" on the firebaseTools.use line.
If I remove it, its throws "TypeError: Cannot read property 'project' of undefined" from the delete command.
How can I make it right?
The documentation on deleting collections with firebase-tools provides a template to work with. If you want to specify a project, note that
delete()
takes two parameters. For example: