@graphql-mesh/transport-mysql
Version:
17 lines (16 loc) • 650 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSubgraphExecutor = void 0;
const tslib_1 = require("tslib");
const execution_js_1 = require("./execution.js");
tslib_1.__exportStar(require("./types.js"), exports);
tslib_1.__exportStar(require("./execution.js"), exports);
tslib_1.__exportStar(require("./parseEndpointUri.js"), exports);
const getSubgraphExecutor = function getMySQLSubgraphExecutor({ getSubgraph, pubsub, logger }) {
return (0, execution_js_1.getMySQLExecutor)({
subgraph: getSubgraph(),
pubsub,
logger,
});
};
exports.getSubgraphExecutor = getSubgraphExecutor;
;