@omnigraph/raml
Version:
This package generates `GraphQLSchema` instance from **RAML API Document** (`.raml`) file located at a URL or FileSystem by resolving the JSON Schema dependencies. It uses `@omnigraph/json-schema` by generating the necessary configuration.
9 lines (8 loc) • 454 B
TypeScript
import { getGraphQLSchemaFromBundle, JSONSchemaLoaderBundle as RAMLLoaderBundle } from '@omnigraph/json-schema';
import { RAMLLoaderOptions } from './types';
/**
* Creates a bundle by downloading and resolving the internal references once
* to load the schema locally later
*/
export declare function createBundle(name: string, ramlLoaderOptions: RAMLLoaderOptions): Promise<RAMLLoaderBundle>;
export { getGraphQLSchemaFromBundle, RAMLLoaderBundle };