@graphql-mesh/odata
Version:
34 lines (33 loc) • 1.25 kB
JavaScript
import { PredefinedProxyOptions } from '@graphql-mesh/store';
import { loadNonExecutableGraphQLSchemaFromOData, processDirectives } from '@omnigraph/odata';
export default class ODataHandler {
constructor({ name, config, baseDir, importFn, logger, store, }) {
this.name = name;
this.config = config;
this.baseDir = baseDir;
this.importFn = importFn;
this.logger = logger;
this.schema = store.proxy('schema.graphql', PredefinedProxyOptions.GraphQLSchemaWithDiffing);
}
async getMeshSource({ fetchFn }) {
let schema = await this.schema.getWithSet(() => loadNonExecutableGraphQLSchemaFromOData(this.name, {
endpoint: this.config.endpoint,
source: this.config.source,
baseDir: this.baseDir,
schemaHeaders: this.config.schemaHeaders,
operationHeaders: this.config.operationHeaders,
fetchFn,
logger: this.logger,
importFn: this.importFn,
batch: this.config.batch,
expandNavProps: this.config.expandNavProps,
}));
schema = processDirectives({
schema,
fetchFn,
});
return {
schema,
};
}
}