list_firestore_collections
Retrieve and list collections within a Firestore database by specifying the GCP project ID and database ID. Simplify database management and organization.
Instructions
List collections in a Firestore database.
Args:
project_id: The ID of the GCP project
database_id: The ID of the Firestore database (default is "(default)")
Returns:
List of collections in the specified Firestore database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | No | (default) | |
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_id": {
"default": "(default)",
"title": "Database Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "list_firestore_collectionsArguments",
"type": "object"
}