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;

17 lines (16 loc) 720 B
import type { JSONSchemaObject } from 'json-machete'; import type { Logger, MeshFetch } from '@graphql-mesh/types'; import type { JSONSchemaOperationConfig } from './types.js'; export declare function getReferencedJSONSchemaFromOperations({ operations, cwd, schemaHeaders, ignoreErrorResponses, logger, fetchFn, endpoint, operationHeaders, queryParams, }: { operations: JSONSchemaOperationConfig[]; cwd: string; schemaHeaders?: { [key: string]: string; }; ignoreErrorResponses?: boolean; logger?: Logger; fetchFn: MeshFetch; endpoint: string; operationHeaders: Record<string, string>; queryParams: Record<string, string | number | boolean>; }): Promise<JSONSchemaObject>;