UNPKG

@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.

16 lines (15 loc) 715 B
import type { Logger, MeshFetch } from '@graphql-mesh/types'; import type { RAMLLoaderOptions } from './types.js'; export { loadGraphQLSchemaFromRAML as default } from './loadGraphQLSchemaFromRAML.js'; export * from './loadGraphQLSchemaFromRAML.js'; export { getJSONSchemaOptionsFromRAMLOptions } from './getJSONSchemaOptionsFromRAMLOptions.js'; export type { RAMLLoaderOptions } from './types.js'; export declare function loadRAMLSubgraph(name: string, options: RAMLLoaderOptions): (ctx: { fetch: MeshFetch; cwd: string; logger: Logger; }) => { name: string; schema$: Promise<import("graphql").GraphQLSchema>; }; export { processDirectives, getSubgraphExecutor } from '@omnigraph/json-schema';