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.

14 lines (13 loc) 629 B
import { JSONSchemaOperationConfig } from '@omnigraph/json-schema'; import { RAMLLoaderOptions } from './types'; /** * Generates the options for JSON Schema Loader * from RAML Loader options by extracting the JSON Schema references * from RAML API Document */ export declare function getJSONSchemaOptionsFromRAMLOptions({ ramlFilePath, cwd: ramlFileCwd, operations: extraOperations, baseUrl: forcedBaseUrl, fetch, schemaHeaders, selectQueryOrMutationField, }: RAMLLoaderOptions): Promise<{ operations: JSONSchemaOperationConfig[]; cwd: string; baseUrl: string; fetch?: WindowOrWorkerGlobalScope['fetch']; }>;