UNPKG

@graphql-mesh/mysql

Version:
12 lines (11 loc) 444 B
import type { MeshHandler, MeshHandlerOptions, MeshSource, YamlConfig } from '@graphql-mesh/types'; export default class MySQLHandler implements MeshHandler { private name; private config; private baseDir; private pubsub; private importFn; private schemaProxy; constructor({ name, config, baseDir, pubsub, store, importFn, }: MeshHandlerOptions<YamlConfig.MySQLHandler>); getMeshSource(): Promise<MeshSource>; }