@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) • 517 B
TypeScript
import { RAMLLoaderOptions } from './types';
/**
* Creates a local GraphQLSchema instance from a RAML API Document.
* Everytime this function is called, the RAML file and its dependencies will be resolved on runtime.
* If you want to avoid this, use `createBundle` function to create a bundle once and save it to a storage
* then load it with `loadGraphQLSchemaFromBundle`.
*/
export declare function loadGraphQLSchemaFromRAML(name: string, options: RAMLLoaderOptions): Promise<import("graphql").GraphQLSchema>;