@graphql-mesh/raml
Version:
67 lines (66 loc) • 2.73 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const graphql_1 = require("graphql");
const store_1 = require("@graphql-mesh/store");
const utils_1 = require("@graphql-mesh/utils");
const raml_1 = require("@omnigraph/raml");
class RAMLHandler {
constructor({ name, config, baseDir, store, pubsub, logger, importFn, }) {
this.name = name;
this.config = config;
this.baseDir = baseDir;
this.schemaWithAnnotationsProxy = store.proxy('schemaWithAnnotations', store_1.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 (0, utils_1.readFileOrUrl)(this.config.source, {
allowUnknownExtensions: true,
cwd: this.baseDir,
fetch: this.fetchFn,
importFn: this.importFn,
logger: this.logger,
headers: this.config.schemaHeaders,
});
return (0, graphql_1.buildSchema)(sdl, {
assumeValidSDL: true,
assumeValid: true,
});
}
return this.schemaWithAnnotationsProxy.getWithSet(async () => {
this.logger.info(`Generating GraphQL schema from RAML schema`);
const schema = await (0, raml_1.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 = (0, raml_1.processDirectives)(nonExecutableSchema, {
...this.config,
pubsub: this.pubsub,
logger: this.logger,
globalFetch: fetchFn,
});
return {
schema: schemaWithDirectives,
};
}
}
exports.default = RAMLHandler;