UNPKG

@graphql-mesh/raml

Version:
64 lines (63 loc) 2.65 kB
import { buildSchema } from 'graphql'; import { PredefinedProxyOptions } from '@graphql-mesh/store'; import { readFileOrUrl } from '@graphql-mesh/utils'; import { loadNonExecutableGraphQLSchemaFromRAML, processDirectives } from '@omnigraph/raml'; export default class RAMLHandler { 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.importFn = importFn; this.logger = logger; } async getNonExecutableSchema() { if (this.config.source.endsWith('.graphql')) { 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 RAML schema`); const schema = await loadNonExecutableGraphQLSchemaFromRAML(this.name, { ...this.config, cwd: this.baseDir, fetch: this.fetchFn, logger: this.logger, ignoreErrorResponses: this.config.ignoreErrorResponses, selectQueryOrMutationField: this.config.selectQueryOrMutationField?.map(({ type, fieldName }) => ({ type: type.toLowerCase(), fieldName, })), pubsub: this.pubsub, }); return schema; }); } 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, }; } }