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§
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Source§readonly operation?: "create" | "get" | "getAll" | "delete" | "upsert" | "query"
readonly operation?: "create" | "get" | "getAll" | "delete" | "upsert" | "query"
Default: "get"
Source§readonly project Id?: string
readonly project Id?: string
As displayed in firebase console URL. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getProjects"}
Default: "googleFirebaseCloudFirestoreOAuth2Api"