@graphql-mesh/mysql
Version:
65 lines (64 loc) • 2.39 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const store_1 = require("@graphql-mesh/store");
const utils_1 = require("@graphql-mesh/utils");
const mysql_1 = require("@omnigraph/mysql");
class MySQLHandler {
constructor({ name, config, baseDir, pubsub, logger, store, importFn, }) {
this.name = name;
this.config = config;
this.baseDir = baseDir;
this.pubsub = pubsub;
this.importFn = importFn;
this.logger = logger;
this.schemaProxy = store.proxy('schema.graphql', store_1.PredefinedProxyOptions.GraphQLSchemaWithDiffing);
}
async getMeshSource() {
const { pool: configPool } = this.config;
const schema = await this.schemaProxy.getWithSet(() => {
const endpointUrl = new URL('mysql://localhost:3306');
if (this.config.port) {
endpointUrl.port = this.config.port.toString();
}
if (this.config.host) {
endpointUrl.hostname = this.config.host;
}
if (this.config.user) {
endpointUrl.username = this.config.user;
}
if (this.config.password) {
endpointUrl.password = this.config.password;
}
if (this.config.database) {
endpointUrl.pathname = this.config.database;
}
if (this.config.ssl) {
endpointUrl.protocol = 'mysqls:';
}
return (0, mysql_1.loadGraphQLSchemaFromMySQL)(this.name, {
endpoint: endpointUrl.toString(),
ssl: {
rejectUnauthorized: this.config.ssl?.rejectUnauthorized,
caPath: this.config.ssl?.ca,
},
});
});
const pool = typeof configPool === 'string'
? await (0, utils_1.loadFromModuleExportExpression)(configPool, {
cwd: this.baseDir,
defaultExportName: 'default',
importFn: this.importFn,
})
: configPool;
return {
schema,
executor: (0, mysql_1.getMySQLExecutor)({
subgraph: schema,
pool,
pubsub: this.pubsub,
logger: this.logger,
}),
};
}
}
exports.default = MySQLHandler;