UNPKG

@omnigraph/json-schema

Version:

This package generates GraphQL Schema from JSON Schema and sample JSON request and responses. You can define your root field endpoints like below in your GraphQL Config for example;

15 lines (14 loc) 699 B
import { JSONSchemaOperationConfig } from './types'; import { JSONSchemaObject } from 'json-machete'; import { Logger } from '@graphql-mesh/types'; export declare function getDereferencedJSONSchemaFromOperations({ operations, cwd, logger, fetchFn, schemaHeaders, ignoreErrorResponses, baseUrl, operationHeaders, queryParams, }: { operations: JSONSchemaOperationConfig[]; cwd: string; logger: Logger; fetchFn: WindowOrWorkerGlobalScope['fetch']; schemaHeaders?: Record<string, string>; ignoreErrorResponses?: boolean; baseUrl: string; operationHeaders: Record<string, string>; queryParams: Record<string, string | number | boolean>; }): Promise<JSONSchemaObject>;