@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) • 903 B
TypeScript
import { SchemaComposer } from 'graphql-compose';
import { Logger, MeshFetch, MeshPubSub } from '@graphql-mesh/types';
import { JSONSchemaOperationConfig, OperationHeadersConfiguration } from './types';
import { IStringifyOptions } from 'qs';
export interface AddExecutionLogicToComposerOptions {
schemaComposer: SchemaComposer;
baseUrl: string;
operations: JSONSchemaOperationConfig[];
operationHeaders?: OperationHeadersConfiguration;
fetch: MeshFetch;
logger: Logger;
pubsub?: MeshPubSub;
queryParams?: Record<string, string | number | boolean>;
queryStringOptions?: IStringifyOptions;
}
export declare function addExecutionLogicToComposer(name: string, { schemaComposer, fetch: globalFetch, logger, operations, operationHeaders, baseUrl, pubsub: globalPubsub, queryParams, queryStringOptions, }: AddExecutionLogicToComposerOptions): Promise<SchemaComposer<any>>;