interface GoogleFirebaseCloudFirestoreNodeParameters {
authentication?:
| "serviceAccount"
| "googleFirebaseCloudFirestoreOAuth2Api";
collection?: string;
columns?: string;
database?: string;
documentId?: string;
limit?: number;
operation?: | "create"
| "get"
| "getAll"
| "delete"
| "upsert"
| "query";
projectId?: string;
query?: string;
resource?: "collection"
| "document";
returnAll?: boolean;
simple?: boolean;
updateKey?: string;
}Properties§
§§§§§§§§§§§
readonly authentication?: "serviceAccount" | "googleFirebaseCloudFirestoreOAuth2Api"§
readonly collection?: stringCollection name
readonly columns?: stringList of attributes to save
readonly database?: stringUsually the provided default value will work Default: "(default)"
readonly document Id?: string§readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly operation?: "create" | "get" | "getAll" | "delete" | "upsert" | "query"Default: "get"
readonly project Id?: stringAs displayed in firebase console URL. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getProjects"}
readonly query?: stringJSON query to execute
readonly resource?: "collection" | "document"Default: "document"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly simple?: booleanWhether to return a simplified version of the response instead of the raw data Default: true
readonly update Key?: stringName of the field in an input item that contains the document ID
Default: "googleFirebaseCloudFirestoreOAuth2Api"