(projectId: string, config: Config)
| 74 | * Loads all SQL Connect service configurations from the firebase.json file. |
| 75 | */ |
| 76 | export async function loadAll(projectId: string, config: Config): Promise<ServiceInfo[]> { |
| 77 | const serviceCfgs = readFirebaseJson(config); |
| 78 | return await Promise.all(serviceCfgs.map((c) => load(projectId, config, c.source))); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * loads schemas and connectors from {sourceDirectory}/dataconnect.yaml |
no test coverage detected
searching dependent graphs…