UNPKG

@graphql-mesh/json-schema

Version:
62 lines (61 loc) 2.73 kB
import { buildSchema } from 'graphql'; import { PredefinedProxyOptions } from '@graphql-mesh/store'; import { readFileOrUrl } from '@graphql-mesh/utils'; import { loadNonExecutableGraphQLSchemaFromJSONSchemas, processDirectives, } from '@omnigraph/json-schema'; export default class JsonSchemaHandler { constructor({ name, config, baseDir, store, pubsub, logger, importFn, }) { this.name = name; this.config = config; this.baseDir = baseDir; this.schemaWithAnnotationsProxy = store.proxy('schemaWithAnnotations', PredefinedProxyOptions.GraphQLSchemaWithDiffing); this.pubsub = pubsub; this.logger = logger; this.importFn = importFn; if ('bundlePath' in config || 'bundleHeaders' in config) { throw new Error(`JSON Schema bundles are no longer available! You can directly use the generated SDL in \`source\` instead\nSee: https://the-guild.dev/graphql/mesh/docs/handlers/openapi#loading-the-sources-from-a-cdn-like-graphql-hive-or-schema-registry`); } } async getNonExecutableSchema() { if (this.config.source) { this.logger.info(`Fetching GraphQL Schema with annotations`); const sdl = await readFileOrUrl(this.config.source, { allowUnknownExtensions: true, cwd: this.baseDir, fetch: this.fetchFn, importFn: this.importFn, logger: this.logger, headers: this.config.schemaHeaders, }); return buildSchema(sdl, { assumeValidSDL: true, assumeValid: true, }); } return this.schemaWithAnnotationsProxy.getWithSet(async () => { this.logger.info(`Generating GraphQL schema from JSON Schemas`); return loadNonExecutableGraphQLSchemaFromJSONSchemas(this.name, { ...this.config, operations: this.config.operations, cwd: this.baseDir, fetch: this.fetchFn, logger: this.logger, pubsub: this.pubsub, }); }); } async getMeshSource({ fetchFn }) { this.fetchFn = fetchFn; this.logger.debug('Getting the schema with annotations'); const nonExecutableSchema = await this.getNonExecutableSchema(); this.logger.info(`Processing annotations for the execution layer`); const schemaWithDirectives = processDirectives(nonExecutableSchema, { ...this.config, pubsub: this.pubsub, logger: this.logger, globalFetch: fetchFn, }); return { schema: schemaWithDirectives, }; } }