UNPKG

@omnigraph/mysql

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