@omnigraph/mysql
Version:
8 lines (7 loc) • 313 B
text/typescript
import { MySQLSSLOptions } from './types';
export interface LoadGraphQLSchemaFromMySQLOpts {
endpoint: string;
ssl?: MySQLSSLOptions;
tables?: string[];
}
export declare function loadGraphQLSchemaFromMySQL(name: string, opts: LoadGraphQLSchemaFromMySQLOpts): Promise<import("graphql").GraphQLSchema>;