@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;
18 lines (17 loc) • 992 B
TypeScript
import type { GraphQLScalarType } from 'graphql';
import type { SchemaComposer } from 'graphql-compose';
import type { IStringifyOptions } from 'qs';
import type { Logger } from '@graphql-mesh/types';
import type { JSONSchemaOperationConfig, OperationHeadersConfiguration } from './types.js';
export interface AddExecutionLogicToComposerOptions {
schemaComposer: SchemaComposer;
endpoint: string;
operations: JSONSchemaOperationConfig[];
operationHeaders?: OperationHeadersConfiguration;
logger: Logger;
queryParams?: Record<string, string | number | boolean>;
queryStringOptions?: IStringifyOptions;
getScalarForFormat?: (format: string) => GraphQLScalarType | void;
handlerName?: string;
}
export declare function addExecutionDirectivesToComposer(subgraphName: string, { schemaComposer, logger, operations, operationHeaders, endpoint, queryParams, queryStringOptions, handlerName, }: AddExecutionLogicToComposerOptions): import("graphql").GraphQLSchema;