@graphql-mesh/tuql
Version:
8 lines (7 loc) • 324 B
TypeScript
import { GetMeshSourceOptions, MeshHandler, MeshSource, YamlConfig } from '@graphql-mesh/types';
export default class TuqlHandler implements MeshHandler {
private config;
private baseDir;
constructor({ config, baseDir }: GetMeshSourceOptions<YamlConfig.TuqlHandler>);
getMeshSource(): Promise<MeshSource>;
}