UNPKG

@omnigraph/mysql

Version:

8 lines (7 loc) 335 B
import { MySQLSSLOptions } from '@graphql-mesh/transport-mysql'; export interface LoadGraphQLSchemaFromMySQLOpts { endpoint: string; ssl?: MySQLSSLOptions; tables?: string[]; } export declare function loadGraphQLSchemaFromMySQL(name: string, opts: LoadGraphQLSchemaFromMySQLOpts): Promise<import("graphql").GraphQLSchema>;