@graphiql/plugin-explorer
Version:
This package provides a plugin that integrated the [`GraphiQL Explorer`](https://github.com/OneGraph/graphiql-explorer) into the GraphiQL UI.
7 lines (6 loc) • 358 B
TypeScript
import { GraphiQLPlugin } from '@graphiql/react';
import { GraphiQLExplorerProps } from 'graphiql-explorer';
import './graphiql-explorer.d.ts';
import './index.css';
export declare type GraphiQLExplorerPluginProps = Omit<GraphiQLExplorerProps, 'onEdit' | 'query'>;
export declare function explorerPlugin(props?: GraphiQLExplorerPluginProps): GraphiQLPlugin;