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) 706 B
import type { JSONSchemaObject } from 'json-machete'; import type { Logger, MeshFetch } from '@graphql-mesh/types'; import type { JSONSchemaOperationConfig } from './types.cjs'; export declare function getDereferencedJSONSchemaFromOperations({ operations, cwd, logger, fetchFn, schemaHeaders, ignoreErrorResponses, endpoint, operationHeaders, queryParams, }: { operations: JSONSchemaOperationConfig[]; cwd: string; logger: Logger; fetchFn: MeshFetch; schemaHeaders?: Record<string, string>; ignoreErrorResponses?: boolean; endpoint: string; operationHeaders: Record<string, string>; queryParams: Record<string, string | number | boolean>; }): Promise<JSONSchemaObject>;