firebase-admin
Version:
Firebase admin SDK for Node.js
88 lines (87 loc) • 3 kB
JavaScript
/*! firebase-admin v13.3.0 */
;
/*!
* @license
* Copyright 2024 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.DataConnect = exports.DataConnectService = void 0;
const data_connect_api_client_internal_1 = require("./data-connect-api-client-internal");
class DataConnectService {
constructor(app) {
this.dataConnectInstances = new Map();
this.appInternal = app;
}
getDataConnect(connectorConfig) {
const id = `${connectorConfig.location}-${connectorConfig.serviceId}`;
const dc = this.dataConnectInstances.get(id);
if (typeof dc !== 'undefined') {
return dc;
}
const newInstance = new DataConnect(connectorConfig, this.appInternal);
this.dataConnectInstances.set(id, newInstance);
return newInstance;
}
/**
* Returns the app associated with this `DataConnectService` instance.
*
* @returns The app associated with this `DataConnectService` instance.
*/
get app() {
return this.appInternal;
}
}
exports.DataConnectService = DataConnectService;
/**
* The Firebase `DataConnect` service interface.
*/
class DataConnect {
/**
* @param connectorConfig - The connector configuration.
* @param app - The app for this `DataConnect` service.
* @constructor
* @internal
*/
constructor(connectorConfig, app) {
this.connectorConfig = connectorConfig;
this.app = app;
this.client = new data_connect_api_client_internal_1.DataConnectApiClient(connectorConfig, app);
}
/**
* Execute an arbitrary GraphQL query or mutation
*
* @param query - The GraphQL query or mutation.
* @param options - Optional {@link GraphqlOptions} when executing a GraphQL query or mutation.
*
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
* @beta
*/
executeGraphql(query, options) {
return this.client.executeGraphql(query, options);
}
/**
* Execute an arbitrary read-only GraphQL query
*
* @param query - The GraphQL read-only query.
* @param options - Optional {@link GraphqlOptions} when executing a read-only GraphQL query.
*
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
* @beta
*/
executeGraphqlRead(query, options) {
return this.client.executeGraphqlRead(query, options);
}
}
exports.DataConnect = DataConnect;