UNPKG

@graphql-mesh/transport-mysql

Version:
10 lines (9 loc) 226 B
import type { Connection } from 'mysql'; export interface MySQLContext { mysqlConnection: Connection; } export interface MySQLSSLOptions { rejectUnauthorized?: boolean; caPath?: string; ca?: string | Buffer; }