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;

12 lines (11 loc) 649 B
import type { OperationTypeNode } from 'graphql'; import type { HTTPMethod, JSONSchemaOperationConfig, JSONSchemaPubSubOperationConfig } from './types.js'; export declare function isPubSubOperationConfig(operationConfig: JSONSchemaOperationConfig): operationConfig is JSONSchemaPubSubOperationConfig; export declare function getOperationMetadata(operationConfig: JSONSchemaOperationConfig): { httpMethod: HTTPMethod; operationType: OperationTypeNode; rootTypeName: "Query" | "Mutation" | "Subscription"; fieldName: string; }; export declare function cleanObject(obj: any): any; export declare function isFile(obj: any): obj is File;