Firebase Connector
Create, read, update, and delete documents in a Firebase Cloud Firestore database collection.
Connections
Firebase Private Key Connection
Authenticate requests to firebase using values obtained from the Google Cloud Platform.
Input | Comments | Default |
---|---|---|
Project Id | Provide the unique identifier of the project from the Google Cloud Platform. | |
Private Key | Provide the private key from the Google Cloud Platform. | |
Provide the client email for the GCP account. |
Actions
Bulk Create Documents
Create multiple documents in a Cloud Firestore collection in a single operation
Input | Comments | Default |
---|---|---|
Connection | ||
Collection | Provide a string value for the collection name. | |
Documents | An array of documents to be created in the collection. |
|
Create Document
Create a document in a Cloud Firestore collection
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Data | Provide a key value pair that represents your data. | |
Connection |
Delete Document
Remove a document from a Cloud Firestore collection
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Document | Provide a string value for the unique identifier of the document. | |
Connection |
Get Document
Get the contents of a document in a Cloud Firestore collection
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Document | Provide a string value for the unique identifier of the document. | |
Connection |
List Collections
List all collections in a Cloud Firestore database
Input | Comments | Default |
---|---|---|
Connection |
List Documents
List all documents in a Cloud Firestore collection
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Connection | ||
Order By | Provide a string value for the field to order by. | |
Query Operators |
Remove Field
Completely removes a field from a given document (may not work on a field with a null value)
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Document | Provide a string value for the unique identifier of the document. | |
Field To Remove | Provide a string value for the name of the field you would like to remove from the document. | |
Connection |
Update Document
Updates a document in a Cloud Firestore collection
Input | Comments | Default |
---|---|---|
Collection | Provide a string value for the collection name. | |
Document | Provide a string value for the unique identifier of the document. | |
Data | Provide a key value pair that represents your data. | |
Connection |