@graphql-mesh/transform-snapshot
Version:
11 lines (10 loc) • 445 B
TypeScript
import { GraphQLSchema } from 'graphql';
import { YamlConfig, MeshTransform, MeshTransformOptions } from '@graphql-mesh/types';
export default class SnapshotTransform implements MeshTransform {
noWrap: boolean;
private config;
private baseDir;
private importFn;
constructor({ baseDir, config, importFn }: MeshTransformOptions<YamlConfig.SnapshotTransformConfig>);
transformSchema(schema: GraphQLSchema): GraphQLSchema;
}