UNPKG

330 BTypeScriptView Raw
1import { GetMeshSourceOptions, MeshHandler, MeshSource, YamlConfig } from '@graphql-mesh/types';
2export default class MongooseHandler implements MeshHandler {
3 private config;
4 private pubsub;
5 constructor({ config, pubsub }: GetMeshSourceOptions<YamlConfig.MongooseHandler>);
6 getMeshSource(): Promise<MeshSource>;
7}