@omnigraph/openapi
Version:
11 lines (10 loc) • 425 B
TypeScript
import { JSONSchemaLoaderOptions } from '@omnigraph/json-schema';
export interface OpenAPILoaderOptions extends Partial<JSONSchemaLoaderOptions> {
source: string;
selectQueryOrMutationField?: OpenAPILoaderSelectQueryOrMutationFieldConfig[];
fallbackFormat?: 'json' | 'yaml' | 'js' | 'ts';
}
export interface OpenAPILoaderSelectQueryOrMutationFieldConfig {
type: 'query' | 'mutation';
fieldName: string;
}